import { ComponentStory, ComponentMeta } from '@storybook/react'; import { CheckBox } from './CheckBox'; export default { component: CheckBox, } as ComponentMeta; export const Default: ComponentStory = () => ( ); export const DefaultWithTitle: ComponentStory = () => ( ); export const DefaultChecked: ComponentStory = () => ( ); export const Disabled: ComponentStory = () => ( ); export const DisabledChecked: ComponentStory = () => ( );