doc: update readme of addon viewport

- about configure section
This commit is contained in:
Ideveloper (이승규) 2020-05-01 18:01:45 +09:00 committed by GitHub
parent 37a1f6ab12
commit 2cf678ca96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,6 +103,7 @@ Parameters can be configured for a whole set of stories or a single story via th
export default {
title: 'Stories',
parameters: {
viewports: INITIAL_VIEWPORTS,
viewport: { defaultViewport: 'iphone6' },
};
};
@ -110,6 +111,7 @@ export default {
export const myStory = () => <div />;
myStory.story = {
parameters: {
viewports: INITIAL_VIEWPORTS,
viewport: { defaultViewport: 'iphonex' },
},
};