13 lines
No EOL
265 B
TypeScript
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: {},
|
|
} |