import type { Meta, StoryFn } from '@storybook/react'; import type { SwitchProps } from './index'; import { Switch } from './index'; export default { title: 'UI/Switch', component: Switch, } satisfies Meta; const Template: StoryFn = args => ; export const Default: StoryFn = Template.bind(undefined); Default.args = {};