storybook/docs/snippets/common/checkbox-story-csf.js.mdx
2023-05-25 23:11:38 +01:00

16 lines
191 B
Plaintext

```js
// Checkbox.stories.js|jsx
import { Checkbox } from './Checkbox';
export default {
component: Checkbox,
};
export const Unchecked = {
args: {
label: 'Unchecked',
},
};
```