type SolidTable<TFeatures, TData> = Table<TFeatures, TData> & object;Defined in: createTable.ts:19
FlexRender: typeof FlexRender;Convenience FlexRender component attached to the table instance for rendering headers, cells, or footers with custom markup. Mirrors the table.FlexRender API exposed by createTableHook's createAppTable.
<table.FlexRender header={header} />
<table.FlexRender cell={cell} />
<table.FlexRender footer={footer} />Subscribe: (props) => JSX.Element;Creates a reactive render boundary. The child function reads the table atoms it needs, so Solid only tracks those atom reads.
(atoms) => JSX.Element
JSX.Element
TFeatures extends TableFeatures
TData extends RowData