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