mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
20 lines
296 B
Plaintext
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',
|
|
},
|
|
},
|
|
};
|
|
``` |