mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:01:05 +08:00
29 lines
358 B
Plaintext
29 lines
358 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
<Meta
|
|
title='Stories'
|
|
parameters={{
|
|
viewport: {
|
|
viewports: MINIMAL_VIEWPORTS,
|
|
defaultViewport: 'iphone6'
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Story
|
|
name="MyStory"
|
|
parameters={{
|
|
viewport: {
|
|
defaultViewport: 'iphonex'
|
|
}
|
|
}}
|
|
|
|
>
|
|
|
|
<div />
|
|
</Story>
|
|
```
|