@smartface/contx
Version:
Context Manager
15 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Creates an action that add a context to ThemeContext as a Context element.
*
* @params {function} - Context wrapper function
*/
function addThemeableContext(context) {
return {
type: "addThemeableContext",
context: context
};
}
exports.default = addThemeableContext;
//# sourceMappingURL=addThemeableContext.js.map