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

15 lines
281 B
Plaintext

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