mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:41:06 +08:00
31 lines
474 B
Plaintext
31 lines
474 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
<Meta
|
|
title='Stories'
|
|
parameters={{
|
|
viewport: {
|
|
viewports: INITIAL_VIEWPORTS,
|
|
defaultViewport: 'iphone6'
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Story
|
|
name='MyStory'
|
|
parameters={{
|
|
viewport: {
|
|
defaultViewport: 'iphonex'
|
|
}
|
|
}}>
|
|
{() => {
|
|
return {
|
|
template: `<div/>`,
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |