mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
16 lines
466 B
JavaScript
16 lines
466 B
JavaScript
import React from 'react';
|
|
import addons from '@storybook/addons';
|
|
import StoryPanel from './StoryPanel';
|
|
import { ADDON_ID, PANEL_ID } from './';
|
|
|
|
export function register() {
|
|
addons.register(ADDON_ID, api => {
|
|
const channel = addons.getChannel();
|
|
addons.addPanel(PANEL_ID, {
|
|
title: 'Story',
|
|
// eslint-disable-next-line react/prop-types
|
|
render: ({ active }) => <StoryPanel channel={channel} api={api} active={active} />,
|
|
});
|
|
});
|
|
}
|