storybook/docs/snippets/common/checkbox-story-csf.js.mdx
2020-08-08 03:33:41 +01:00

13 lines
259 B
Plaintext

```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' };
```