mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:31:06 +08:00
16 lines
318 B
Plaintext
16 lines
318 B
Plaintext
```html
|
|
<!-- MyComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Story } from '@storybook/addon-svelte-csf';
|
|
import MyComponent from './MyComponent.svelte';
|
|
</script>
|
|
|
|
<Story name="Basic" template="BasicTemplate">
|
|
<MyComponent />
|
|
</Story>
|
|
|
|
<Story name="WithProp">
|
|
<MyComponent prop="value"/>
|
|
</Story>
|
|
``` |