diff --git a/src/pages/Dashboard/LeftSidebar.stories.tsx b/src/pages/Dashboard/LeftSidebar.stories.tsx new file mode 100644 index 00000000..5adec438 --- /dev/null +++ b/src/pages/Dashboard/LeftSidebar.stories.tsx @@ -0,0 +1,19 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import LeftSidebar from './LeftSidebar' + +const meta = { + title: 'Dashboard/LeftSidebar', + component: LeftSidebar, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: {}, +}