import type { Meta, StoryObj } from '@storybook/react';
import { Box, BoxProps, Text } from '@neno-ignite-ui/react';
export default {
title: 'Surfaces/Box',
component: Box,
args: {
children: Testando o elemento Box
},
argTypes: {
children: {
control: {
type: null
}
}
}
} as Meta;
export const Primary: StoryObj = {};