mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
37 lines
679 B
Plaintext
37 lines
679 B
Plaintext
```html
|
|
<!-- List.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import List from "./List.svelte";
|
|
|
|
import ListItem from './ListItem.svelte';
|
|
</script>
|
|
|
|
<Meta title="List" component={List} />
|
|
|
|
<Template let:args id="Empty">
|
|
<List {...args} />
|
|
</Template>
|
|
|
|
<Template let:args id="OneItem">
|
|
<List {...args}>
|
|
<ListItem />
|
|
</List>
|
|
</Template>
|
|
|
|
<Template let:args id="ManyItems">
|
|
<List {...args}>
|
|
<ListItem />
|
|
<ListItem />
|
|
<ListItem />
|
|
</List>
|
|
</Template>
|
|
|
|
<Story name="Empty" template="Empty" />
|
|
|
|
<Story name="OneItem" template="OneItem" />
|
|
|
|
<Story name="MultipleItems" template="ManyItems" />
|
|
``` |