1export const AlignAndJustify = component(() => (
2 <Grid columns={3} gap="md">
3 <GridCol align="center" justify="center">
4 <Box>Center All</Box>
5 </GridCol>
6
7 <GridCol align="start" justify="end">
8 <Box>Top Right</Box>
9 </GridCol>
10
11 <GridCol align="end" justify="start">
12 <Box>Bottom Left</Box>
13 </GridCol>
14 </Grid>
15));