mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
27 lines
771 B
Plaintext
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
|
|
},
|
|
};
|
|
```
|