mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
14 lines
351 B
Plaintext
14 lines
351 B
Plaintext
```js
|
|
// Checkbox.stories.js|jsx|ts|tsx
|
|
|
|
import { CheckBox } from './Checkbox';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Design System/Atoms/Checkbox',
|
|
component: CheckBox,
|
|
};
|
|
``` |