UNPKG

mobx-react-lite

Version:

Lightweight React bindings for MobX based on React 16.8+ and Hooks

10 lines (7 loc) 238 B
let globalIsUsingStaticRendering = false export function enableStaticRendering(enable: boolean) { globalIsUsingStaticRendering = enable } export function isUsingStaticRendering(): boolean { return globalIsUsingStaticRendering }