Move to arrow functions instead of named function declrations

This commit is contained in:
Josh Callender 2017-09-01 17:00:25 -07:00
parent 9695408429
commit ea0b055804

View File

@ -6,7 +6,7 @@ import { Panel } from './components/Panel';
const ADDON_ID = 'storybook-addon-viewport';
const PANEL_ID = `${ADDON_ID}/addon-panel`;
function addChannel(api) {
const addChannel = (api) => {
const channel = addons.getChannel();
addons.addPanel(PANEL_ID, {
@ -17,7 +17,7 @@ function addChannel(api) {
});
}
function init() {
const init = () => {
addons.register(ADDON_ID, addChannel);
}