Create RightSidebar.stories.tsx

This commit is contained in:
Hristo Nedelkov 2023-09-26 11:24:09 +03:00
parent 59ecd1cdfb
commit cc048595fc
1 changed files with 19 additions and 0 deletions

View File

@ -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<typeof RightSidebar>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}