mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
29 lines
601 B
Plaintext
29 lines
601 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: '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 = () => html`<my-component></my-component>`;
|
|
MyStory.parameters = {
|
|
viewport: {
|
|
defaultViewport: 'iphonex'
|
|
},
|
|
};
|
|
``` |