File size: 811 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"

export default {
  title: "Layout / Flex",
  decorators: [
    (Story) => (
      <Box p="10">
        <Story />
      </Box>
    ),
  ],
} satisfies Meta

export { FlexBasic as Basic } from "compositions/examples/flex-basic"
export { FlexWithAlign as Align } from "compositions/examples/flex-with-align"
export { FlexWithAutoMargin as AutoMargin } from "compositions/examples/flex-with-auto-margin"
export { FlexWithDirection as Direction } from "compositions/examples/flex-with-direction"
export { FlexWithJustify as Justify } from "compositions/examples/flex-with-justify"
export { FlexWithOrder as Order } from "compositions/examples/flex-with-order"
export { FlexWithWrap as Wrap } from "compositions/examples/flex-with-wrap"