14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react'
|
|
|
|
import DashboardPage from './DashboardPage'
|
|
|
|
const meta: Meta<typeof DashboardPage> = {
|
|
component: DashboardPage,
|
|
}
|
|
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof DashboardPage>
|
|
|
|
export const Primary: Story = {}
|