# Grid

Grid layout component.

```ts
interface GridProps {
  showDivider?: boolean;
  dndContext?: false | DndContextProps;
}
```

The `Grid` component needs to be used with `Grid.Row` and `Grid.Col`.

## Basic Usage

<code src="./demos/new-demos/basic.tsx"></code>

## With Form

Demo [GridLayout](/components/form-v2#grid-layout)
