# Grid

Grid 布局组件。

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

`Grid` 组件需要配合 `Grid.Row`、`Grid.Col` 使用。

## Basic Usage

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

## With Form

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