mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:11:08 +08:00
10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
export const PARAM_KEY = 'backgrounds';
|
|
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`,
|
|
};
|