UNPKG

@luigiminardim/storybook-addon-globals-controls

Version:

@luigiminardim/storybook-addon-globals-controls gives you a graphical UI to dynamically interact with the Storybook's globals variables. It creates an addon panel next to your component examples ("stories"), so you can edit them live.

6 lines 183 B
export var withGlobals = function withGlobals(decorated) { return function (story, context) { var values = context.globals; return decorated(story, values, context); }; };