church-website/src/components/Dropdown/Dropdown.stories.ts
2026-04-16 15:06:37 +02:00

13 lines
No EOL
265 B
TypeScript

import { Meta, StoryObj } from '@storybook/nextjs-vite'
import { Dropdown } from './Dropdown'
const meta: Meta<typeof Dropdown> = {
component: Dropdown,
}
type Story = StoryObj<typeof Dropdown>;
export default meta
export const Default: Story = {
args: {},
}