mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
10bf7bc084
* chore(*): upgrade prettier * chore(*): upgrade prettier
14 lines
371 B
JavaScript
14 lines
371 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,
|
|
});
|
|
});
|