UNPKG

mobx-react-lite

Version:

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

9 lines 327 B
import { makeObservable } from "mobx"; import { useState } from "react"; if (!useState) { throw new Error("mobx-react-lite requires React with Hooks support"); } if (!makeObservable) { throw new Error("mobx-react-lite@3 requires mobx at least version 6 to be available"); } //# sourceMappingURL=assertEnvironment.js.map