mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:41:05 +08:00
30 lines
598 B
Plaintext
30 lines
598 B
Plaintext
```js
|
|
// my-component.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './my-component';
|
|
|
|
import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
|
|
|
|
export default {
|
|
title: 'Stories',
|
|
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 = () => html`<my-component></my-component>`;
|
|
MyStory.parameters = {
|
|
viewport: {
|
|
defaultViewport: 'iphonex'
|
|
},
|
|
};
|
|
```
|