mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
15 lines
303 B
Plaintext
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' };
|
|
``` |