storybook/docs/snippets/common/storybook-preview-viewport-add-devices.js.mdx
2020-10-07 12:23:34 +08:00

20 lines
296 B
Plaintext

```js
// .storybook/preview.js
const customViewports = {
kindleFire2: {
name: 'Kindle Fire 2',
styles: {
width: '600px',
height: '963px',
},
},
kindleFireHD: {
name: 'Kindle Fire HD',
styles: {
width: '533px',
height: '801px',
},
},
};
```