import type { Meta, StoryObj } from '@storybook/ui'
import { Box, BoxProps } from '../../../react/src/components/Box';
import { Text } from '../../../react/src/components/Text';


export default {
  title: 'Components/Box',
  component: Box,
  args: {
    children: <Text>Sample text...</Text>,
  },
  argTypes: {
    children: {
      control: {
        type: null,
      },
    },
  },
} as Meta<BoxProps>

export const Primary: StoryObj<BoxProps> = {}
