mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
23 lines
435 B
Plaintext
23 lines
435 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
<Meta title="MyComponent" component={MyComponent}/>
|
|
|
|
export const Template = (args) => ({
|
|
Component: MyComponent,
|
|
props: args,
|
|
});
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
}}>
|
|
{Template.bind({})}
|
|
</Canvas>
|
|
``` |