mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
32 lines
645 B
Plaintext
32 lines
645 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
<Meta
|
|
title="Stories"
|
|
parameters={{
|
|
viewport: {
|
|
viewports: INITIAL_VIEWPORTS,
|
|
defaultViewport: 'iphone6',
|
|
},
|
|
}}
|
|
component={MyComponent} />
|
|
|
|
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
|
|
|
|
<Story
|
|
name="MyStory"
|
|
parameters={{
|
|
viewport: {
|
|
defaultViewport: 'iphonex',
|
|
}
|
|
}}
|
|
render={() => ({
|
|
Component: MyComponent,
|
|
})} />
|
|
``` |