import { Grid } from "@styple/design-system";
<Grid
css={{
width: "100%",
gap: "$md",
gridTemplateColumns: "1fr 1fr",
gridAutoRows: "1fr"
}}
>
<Container css={{ width: "100%", height: "$lg", bg: "$bg300" }} />
<Container css={{ width: "100%", height: "$lg", bg: "$bg300" }} />
</Grid>
A styled component wrapper for Container
with display grid.