mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 07:31:19 +08:00
24 lines
391 B
Plaintext
24 lines
391 B
Plaintext
```html
|
|
<!-- Page.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Page from './Page.svelte';
|
|
</script>
|
|
|
|
<Meta title="Page" component={Page} />
|
|
|
|
<Template let:args>
|
|
<Page {...args}>
|
|
<footer>{args.footer}</footer>
|
|
</Page>
|
|
</Template>
|
|
|
|
<Story
|
|
name="CustomFooter"
|
|
args={{
|
|
footer: 'Built with Storybook',
|
|
}}
|
|
/>
|
|
``` |