mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
26 lines
461 B
Plaintext
26 lines
461 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import React from 'react';
|
|
|
|
export default {
|
|
title: 'Stories',
|
|
parameters: {
|
|
// the viewports object from the Essentials addon
|
|
viewport: {
|
|
// the viewports you want to use
|
|
viewports: MINIMAL_VIEWPORTS,
|
|
// your own default viewport
|
|
defaultViewport: 'iphone6'
|
|
},
|
|
};
|
|
};
|
|
|
|
export const MyStory = () => <div />;
|
|
MyStory.parameters = {
|
|
viewport: {
|
|
defaultViewport: 'iphonex'
|
|
},
|
|
};
|
|
```
|