Files
Nachhilfesystem24/web/src/pages/DashboardPage/DashboardPage.stories.tsx
2024-10-04 16:46:22 +02:00

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 = {}