apps/www/content/docs/components/simple-grid.mdx
The SimpleGrid component allows you to create responsive grid layouts with
ease.
import { SimpleGrid } from "@chakra-ui/react"
<SimpleGrid>
<Box />
<Box />
</SimpleGrid>
Specify the number of columns for the grid layout using the columns prop.
Make the grid responsive and adjust automatically without passing columns, by
using the minChildWidth prop. This uses css grid auto-fit and minmax()
internally.
Specify the size of the column by using the colSpan prop.
Pass the rowGap and columnGap props to change the row and column spacing
between the grid items.