storybook/docs/snippets/common/checkbox-story-csf.js.mdx
2021-05-06 21:05:56 +01:00

15 lines
283 B
Plaintext

```js
// Checkbox.stories.js
import { Checkbox } from './Checkbox';
export default {
title: 'MDX/Checkbox',
component: Checkbox
};
const Template = (args) => <Checkbox {...args} />
export const Unchecked = Template.bind({});
Unchecked.args = { label: 'Unchecked' };
```