mobx-react-lite
Version:
Lightweight React bindings for MobX based on React 16.8+ and Hooks
12 lines • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.enableStaticRendering = enableStaticRendering;
exports.isUsingStaticRendering = isUsingStaticRendering;
var globalIsUsingStaticRendering = false;
function enableStaticRendering(enable) {
globalIsUsingStaticRendering = enable;
}
function isUsingStaticRendering() {
return globalIsUsingStaticRendering;
}
//# sourceMappingURL=staticRendering.js.map