mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
31 lines
510 B
Plaintext
31 lines
510 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta
|
|
title="MyComponent"
|
|
parameters={{
|
|
viewport: {
|
|
viewports: INITIAL_VIEWPORTS,
|
|
defaultViewport: 'iphone6',
|
|
},
|
|
}}
|
|
component={MyComponent}
|
|
/>
|
|
|
|
<Story
|
|
name="MyStory"
|
|
parameters={{
|
|
viewport: {
|
|
defaultViewport: 'iphonex',
|
|
},
|
|
}}>
|
|
<MyComponent />
|
|
</Story>
|
|
```
|