mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
25 lines
503 B
JavaScript
25 lines
503 B
JavaScript
import React from 'react';
|
|
import addons from '@storybook/addons';
|
|
|
|
import { Panel } from './components/Panel';
|
|
|
|
const ADDON_ID = 'storybook-addon-viewport';
|
|
const PANEL_ID = `${ADDON_ID}/addon-panel`;
|
|
|
|
const addChannel = api => {
|
|
const channel = addons.getChannel();
|
|
|
|
addons.addPanel(PANEL_ID, {
|
|
title: 'Viewport',
|
|
render() {
|
|
return <Panel channel={channel} api={api} />;
|
|
},
|
|
});
|
|
};
|
|
|
|
const init = () => {
|
|
addons.register(ADDON_ID, addChannel);
|
|
};
|
|
|
|
export { init, addChannel };
|