mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
export const ADDON_ID = 'storybook-addon-background';
|
|
export const PANEL_ID = `${ADDON_ID}/background-panel`;
|
|
|
|
export default {
|
|
SET: `${ADDON_ID}:set`,
|
|
UNSET: `${ADDON_ID}:unset`,
|
|
UPDATE_BACKGROUND: `${ADDON_ID}:update`,
|
|
};
|