storybook/docs/snippets/common/checkbox-story-csf.js.mdx
2021-06-28 23:00:33 +01:00

15 lines
303 B
Plaintext

```js
// Checkbox.stories.js | Checkbox.stories.jsx
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' };
```