recompact
Version:
A set of React high order components based on Rx.
25 lines (21 loc) • 453 B
JavaScript
;
exports.__esModule = true;
var config = {
observablesKey: 'observables'
/**
* Set the config of Recompact.
*
* @static
* @category Config
* @param {Object} options
* @example
*
* setConfig({observablesKey: 'observables'});
*/
};var setConfig = function setConfig(_config) {
config = _config;
};
var getConfig = exports.getConfig = function getConfig() {
return config;
};
exports.default = setConfig;