Using React
useCreateStore
The useCreateStore
hook is used to create a Store
within a React application with convenient memoization. Read more.
useRow
The useRow
hook returns an object containing the data of a single Row
in a given Table
, and registers a listener so that any changes to that result will cause a re-render. Read more.
useCell
The useCell
hook returns an object containing the value of a single Cell
in a given Row
, in a given Table
, and registers a listener so that any changes to that result will cause a re-render. Read more.
useValue
The useValue
hook returns an object containing the data of a single Value
in a Store
, and registers a listener so that any changes to that result will cause a re-render. Read more.
Inspector
The Inspector
component renders a tool which allows you to view and edit the content of a Store
in a debug web environment. Read more.
Provider
The Provider
component is used to wrap part of an application in a context that provides default objects to be used by hooks and components within. Read more.