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.

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.