mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:21:09 +08:00
20 lines
340 B
Markdown
20 lines
340 B
Markdown
```js filename=".storybook/preview.js|ts" renderer="common" language="js"
|
|
const customViewports = {
|
|
kindleFire2: {
|
|
name: 'Kindle Fire 2',
|
|
styles: {
|
|
width: '600px',
|
|
height: '963px',
|
|
},
|
|
},
|
|
kindleFireHD: {
|
|
name: 'Kindle Fire HD',
|
|
styles: {
|
|
width: '533px',
|
|
height: '801px',
|
|
},
|
|
},
|
|
};
|
|
```
|
|
|