UNPKG

mobx-react-lite

Version:

Lightweight React bindings for MobX based on function components and Hooks

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