mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
21 lines
404 B
Plaintext
21 lines
404 B
Plaintext
```js
|
|
// YourComponent.stories.js
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
|
|
//👇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
|
|
},
|
|
render: (args) => ({
|
|
Component: YourComponent,
|
|
props: args,
|
|
}),
|
|
};
|
|
```
|