mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export const Simple = () => <MyComponent />;
|
|
|
|
Simple.storyName = 'So simple!';
|
|
Simple.decorators = [ ... ];
|
|
Simple.parameters = { ... };
|
|
``` |