import { Meta, StoryObj } from '@storybook/react'; import { Box, Button, Flex, Text } from '..'; const meta: Meta = { title: 'Opize Component/Box', component: Box, tags: ['autodocs'], parameters: { layout: 'centered', }, render: (args) => ( ), }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { children: 'Box', }, }; export const Header: Story = { args: { children: 'Box', header: 'Header', }, }; export const Footer: Story = { args: { children: 'Box', footer: ( <> Footer ), }, }; export const Title: Story = { args: { children: 'Box', title: 'Title', }, };