Using Solid
useCreateStore
The useCreateStore primitive is used to create a Store within a Solid application with convenient ownership. Read more.
useRow
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
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
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
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.