feat: create story for border box component

This commit is contained in:
RadoslavDimchev 2023-08-28 10:46:16 +03:00
parent 6606eb1625
commit 10ba1e0cf6
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
import type { Meta, StoryObj } from '@storybook/react'
import BorderBox from './BorderBox'
const meta = {
title: 'General/BorderBox',
component: BorderBox,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof BorderBox>
export default meta
type Story = StoryObj<typeof meta>
export const DefaultColors: Story = {
args: {
children: 'BorderBox',
},
}