storybook/docs/snippets/web-components/your-component.js.mdx
2022-07-07 18:04:56 +01:00

27 lines
771 B
Plaintext

```js
// your-component.stories.js
import { MyComponent } from './your-component';
// This default export determines where your story goes in the story list
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/web-components/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'YourComponent',
};
/*
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
* See https://storybook.js.org/docs/7.0/web-components/api/csf
* to learn how to use render functions.
*/
export const FirstStory = {
render: (args) => MyComponent(args),
args: {
//👇 The args you need here will depend on your component
},
};
```