mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
15 lines
496 B
JavaScript
15 lines
496 B
JavaScript
import React from 'react';
|
|
import addons from '@storybook/addons';
|
|
|
|
import PanelTitle from './components/PanelTitle';
|
|
import Panel from './components/Panel';
|
|
|
|
addons.register('storybook/tests', api => {
|
|
const channel = addons.getChannel();
|
|
addons.addPanel('storybook/tests/panel', {
|
|
title: <PanelTitle channel={addons.getChannel()} api={api} />,
|
|
// eslint-disable-next-line react/prop-types
|
|
render: ({ active }) => <Panel channel={channel} api={api} active={active} />,
|
|
});
|
|
});
|