UNPKG

mobx-react-lite

Version:

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

10 lines (8 loc) 279 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") }