import { ComponentMeta, ComponentStory } from '@storybook/react'; import { Dropdown } from './dropdown'; export default { component: Dropdown, title: 'Shared/Dropdown', argTypes: { onChange: { action: 'onChange' }, }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); export const Primary = Template.bind({}); Primary.args = {};