storybook/docs/snippets/common/my-component-story-with-storyname.js.mdx
2020-08-11 01:11:41 +01:00

9 lines
171 B
Plaintext

```js
// MyComponent.story.js
export const Simple = () => <MyComponent />;
Simple.storyName = 'So simple!';
Simple.decorators = [ ... ];
Simple.parameters = { ... };
```