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