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