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