mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Fix lint errors
This commit is contained in:
parent
ea0b055804
commit
48723a87ba
@ -12,6 +12,7 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@storybook/components": "^3.2.7",
|
||||
"global": "^4.3.2",
|
||||
"prop-types": "^15.5.10"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,9 +1,9 @@
|
||||
import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { viewports, defaultViewport, resetViewport } from './viewportInfo';
|
||||
import { document } from 'global';
|
||||
import { baseFonts } from '@storybook/components';
|
||||
import { document } from 'global';
|
||||
|
||||
import { viewports, defaultViewport, resetViewport } from './viewportInfo';
|
||||
import { SelectViewport } from './SelectViewport';
|
||||
import { RotateViewport } from './RotateViewport';
|
||||
|
||||
|
@ -10,11 +10,11 @@ export function SelectViewport({ activeViewport, onChange }) {
|
||||
<label style={styles.label}>Device</label>
|
||||
<select style={styles.action} value={activeViewport} onChange={onChange}>
|
||||
<option value={defaultViewport}>Default</option>
|
||||
{Object.keys(viewports).map(key => (
|
||||
{Object.keys(viewports).map(key =>
|
||||
<option value={key} key={key}>
|
||||
{viewports[key].name}
|
||||
</option>
|
||||
))}
|
||||
)}
|
||||
</select>
|
||||
</div>
|
||||
);
|
||||
|
@ -6,7 +6,7 @@ import { Panel } from './components/Panel';
|
||||
const ADDON_ID = 'storybook-addon-viewport';
|
||||
const PANEL_ID = `${ADDON_ID}/addon-panel`;
|
||||
|
||||
const addChannel = (api) => {
|
||||
const addChannel = api => {
|
||||
const channel = addons.getChannel();
|
||||
|
||||
addons.addPanel(PANEL_ID, {
|
||||
@ -15,10 +15,10 @@ const addChannel = (api) => {
|
||||
return <Panel channel={channel} api={api} />;
|
||||
},
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const init = () => {
|
||||
addons.register(ADDON_ID, addChannel);
|
||||
}
|
||||
};
|
||||
|
||||
export { init, addChannel };
|
||||
|
Loading…
x
Reference in New Issue
Block a user