TinyBase logoTinyBase β

Using Solid

useCreateStore

Essential

The useCreateStore primitive is used to create a Store within a Solid application with convenient ownership. Read more.

useRow

Essential

The useRow primitive 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 an update. Read more.

useCell

Essential

The useCell primitive 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 an update. Read more.

useValue

Essential

The useValue primitive 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 an update. Read more.

Inspector example

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 primitives and components within. Read more.