mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
10 lines
297 B
JavaScript
10 lines
297 B
JavaScript
|
export const ADDON_ID = 'remotedev-themes-storybook';
|
||
|
export const PANEL_ID = `${ADDON_ID}/panel`;
|
||
|
export const EVENT_ID_DATA = `${ADDON_ID}/event/data`;
|
||
|
export const CSS_CLASS = 'remotedev-storybook';
|
||
|
export const DEFAULT_THEME_STATE = {
|
||
|
theme: 'default',
|
||
|
scheme: 'default',
|
||
|
light: true
|
||
|
};
|