import React from 'react' import { CheckBox } from '../' import { actions, Story, STRING } from '../helpers/storybook' export default { title: 'CheckBox', component: CheckBox, argTypes: { id: STRING, ...actions('onChange', 'onFocus', 'onBlur'), }, args: { disabled: false }, } as const export const BasicUsage: Story = (args) => export const ControllingValueThroughProps: Story = (args) => ( ) ControllingValueThroughProps.args = { checked: false } ControllingValueThroughProps.parameters = { storyshots: false }