function createTable<TFeatures, TData>(tableOptions): SolidTable<TFeatures, TData>;Defined in: createTable.ts:61
Creates a Solid table instance backed by Solid-aware TanStack Store atoms.
Table APIs and atom reads participate in Solid dependency tracking, so computations that read a specific slice can update without invalidating unrelated UI. Use table.Subscribe to create atom-tracked render boundaries.
TFeatures extends TableFeatures
TData extends RowData
TableOptions<TFeatures, TData>
SolidTable<TFeatures, TData>
const table = createTable(
{
features,
columns,
data,
},
)