1export const Justify = component(() => (
2 <Grid columns={4} gap="md">
3 <GridCol justify="start">
4 <Box>Justify Start</Box>
5 </GridCol>
6
7 <GridCol justify="center">
8 <Box>Justify Center</Box>
9 </GridCol>
10
11 <GridCol justify="end">
12 <Box>Justify End</Box>
13 </GridCol>
14
15 <GridCol justify="stretch">
16 <Box>Justify Stretch</Box>
17 </GridCol>
18 </Grid>
19));