mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
25 lines
403 B
Plaintext
25 lines
403 B
Plaintext
```html
|
|
<!-- MyComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
</script>
|
|
|
|
<Meta
|
|
title="MyComponent"
|
|
component={MyComponent}
|
|
/>
|
|
|
|
<Template let:args>
|
|
<MyComponent {...args} />
|
|
</Template>
|
|
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
}}
|
|
/>
|
|
``` |