mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
30 lines
565 B
Plaintext
30 lines
565 B
Plaintext
```ts
|
|
// MyComponent.stories.ts
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
parameters: {
|
|
//👇 The viewports object from the Essentials addon
|
|
viewport: {
|
|
//👇 The viewports you want to use
|
|
viewports: INITIAL_VIEWPORTS,
|
|
|
|
//👇 Your own default viewport
|
|
defaultViewport: 'iphone6',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const MyStory = {
|
|
parameters: {
|
|
viewport: {
|
|
defaultViewport: 'iphonex',
|
|
},
|
|
},
|
|
};
|
|
```
|