storybook/docs/snippets/react/your-component.js.mdx
2023-05-25 21:04:33 +01:00

17 lines
330 B
Plaintext

```js
// YourComponent.stories.js|jsx
import { YourComponent } from './YourComponent';
//👇 This default export determines where your story goes in the story list
export default {
component: YourComponent,
};
export const FirstStory = {
args: {
//👇 The args you need here will depend on your component
},
};
```