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