storybook/docs/snippets/common/checkbox-story-csf.js.mdx
2020-08-14 21:46:15 +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' };
```