storybook/docs/snippets/common/my-component-story-with-storyname.js.mdx
2021-06-28 23:00:33 +01:00

9 lines
242 B
Plaintext

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