mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
30 lines
581 B
Plaintext
30 lines
581 B
Plaintext
```html
|
|
<!-- YourComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import YourComponent from './YourComponent.svelte';
|
|
</script>
|
|
|
|
<!--👇 The title determines where your story goes in the story list -->
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
argTypes={{
|
|
/* Customize your args here depending on your component */
|
|
}}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<Button {...args} />
|
|
</Template>
|
|
|
|
<Story
|
|
name="FirstStory"
|
|
args={{
|
|
/* The args you need here will depend on your component */
|
|
}}
|
|
/>
|
|
```
|