mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:11:06 +08:00
22 lines
421 B
Plaintext
22 lines
421 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 {
|
|
title: 'YourComponent',
|
|
component: YourComponent,
|
|
};
|
|
|
|
const Template = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const FirstStory = Template.bind({});
|
|
|
|
FirstStory.args = {
|
|
/* the args you need here will depend on your component */
|
|
};
|
|
```
|