import type { StoryObj, Meta } from '@storybook/react';
import { Box, BoxProps, Text } from '@rocketseat-ignite-ui/react';
export default {
title: 'Box',
component: Box,
args: {
children: Box Component,
},
argTypes: {
children: {
table: {
disable: true,
},
},
},
} as Meta;
export const Default: StoryObj = {};