ObjectUIObjectUI

Grid

Responsive grid layout container

Examples

2 Column Grid

Card 1
Content 1
Card 2
Content 2

Schema

interface GridSchema {
  type: 'grid';
  columns?: number;
  gap?: number;
  children: SchemaNode[];
  className?: string;
}

On this page