mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
16 lines
191 B
Plaintext
16 lines
191 B
Plaintext
```js
|
|
// Checkbox.stories.js|jsx
|
|
|
|
import { Checkbox } from './Checkbox';
|
|
|
|
export default {
|
|
component: Checkbox,
|
|
};
|
|
|
|
export const Unchecked = {
|
|
args: {
|
|
label: 'Unchecked',
|
|
},
|
|
};
|
|
```
|