mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:32:02 +08:00
20 lines
317 B
Plaintext
20 lines
317 B
Plaintext
```html
|
|
<!-- List.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import List from './List.svelte';
|
|
</script>
|
|
|
|
<meta title="List" component="{List}" />
|
|
|
|
<template let:args>
|
|
<List {...args} />
|
|
</template>
|
|
|
|
<Story name="Empty">
|
|
<List {...args} />
|
|
</Story>
|
|
```
|