Fix lint errors

This commit is contained in:
Josh Callender 2017-09-01 17:40:55 -07:00
parent ea0b055804
commit 48723a87ba
4 changed files with 8 additions and 7 deletions

View File

@ -12,6 +12,7 @@
"license": "MIT",
"dependencies": {
"@storybook/components": "^3.2.7",
"global": "^4.3.2",
"prop-types": "^15.5.10"
},
"peerDependencies": {

View File

@ -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';

View File

@ -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>
);

View File

@ -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 };