mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
```js
|
|
// MyComponent.story.js|jsx|ts|tsx
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
|
|
export const Simple = () => ({
|
|
//👇 Your story goes here
|
|
});
|
|
Simple.decorators = [ ... ];
|
|
Simple.parameters = { ... };
|
|
Simple.storyName = 'So simple!';
|
|
``` |