mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
15 lines
486 B
JavaScript
15 lines
486 B
JavaScript
import React from 'react';
|
|
import addons from '@storybook/addons';
|
|
|
|
import PanelTitle from './components/PanelTitle';
|
|
import Panel from './components/Panel';
|
|
|
|
// Register the addon with a unique name.
|
|
addons.register('storybook/tests', api => {
|
|
// Also need to set a unique name to the panel.
|
|
addons.addPanel('storybook/tests/panel', {
|
|
title: <PanelTitle channel={addons.getChannel()} api={api} />,
|
|
render: () => <Panel channel={addons.getChannel()} api={api} />,
|
|
});
|
|
});
|