import { ComponentMeta, ComponentStory } from '@storybook/react' import { Switch } from './Switch' export default { title: 'DAO DAO / packages / stateless / components / inputs / Switch', component: Switch, } as ComponentMeta const Template: ComponentStory = (args) => export const On = Template.bind({}) On.args = { enabled: true, } export const Off = Template.bind({}) Off.args = { enabled: false, }