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