feat: add without data example for BorderBox story

This commit is contained in:
RadoslavDimchev 2023-08-30 14:28:48 +03:00
parent bc74b0a93a
commit 71b89d6f65
1 changed files with 7 additions and 1 deletions

View File

@ -14,8 +14,14 @@ const meta = {
export default meta
type Story = StoryObj<typeof meta>
export const Page: Story = {
export const WithData: Story = {
args: {
children: 'BorderBox',
},
}
export const WithoutData: Story = {
args: {
children: '',
},
}