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