rx-datatable API
    Preparing search index...

    Variable DataTableCoreConst

    DataTableCore: <
        T,
        K = T,
        ColName extends { toString(): string } = string,
        ItemProps extends Styles = DefaultRowProps,
    >(
        p: DataTableCoreProps<T, K, ColName, ItemProps>,
    ) => Element = ...

    A table of data with columns and rows rendered based on user-specified objects. This is the core functionality of a <DataTable>, without the actual <table> element. It can be used the same way as <DataTable> except that you wrap it in a <table>. See <DataTable> for a usage example. By not including <table>, this component gives you additional ways to format the table, e.g. you can use <caption>, <tfoot> or an extra header row. Also, it is possible to construct a non-table grid (e.g. CSS grid) using this component and custom renderers.

    Type Declaration