mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
17 lines
392 B
JavaScript
17 lines
392 B
JavaScript
import React from 'react';
|
|
import addons from '@storybook/addons';
|
|
import Panel from './Panel';
|
|
import { ADDON_ID, PANEL_ID } from './constant';
|
|
|
|
addons.register(ADDON_ID, api => {
|
|
const channel = addons.getChannel();
|
|
addons.addPanel(PANEL_ID, {
|
|
title: 'Theme',
|
|
render: ({ active }) => (
|
|
active ?
|
|
<Panel channel={channel} api={api} />
|
|
: null
|
|
)
|
|
});
|
|
});
|