TinyBase logoTinyBase β

Using React

useCreateStore

Essential

The useCreateStore hook is used to create a Store within a React application with convenient memoization. Read more.

useRow

Essential

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

Essential

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

Essential

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

Essential

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

Essential

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.