TanStack Table Adapter API - v0.1.0
    Preparing search index...

    Function TableAdapter

    • TableAdapter - A comprehensive wrapper around TanStack Table v8.0.0

      Provides a simplified API with extensive customization options while leveraging TanStack Table's powerful core functionality.

      Type Parameters

      • TData extends object

        The type of data being displayed in the table

      • TValue = unknown

        The type of values in the table cells

      Parameters

      Returns
          | undefined
          | null
          | string
          | number
          | boolean
          | Iterable<ReactNode, any, any>
          | Element

      <TableAdapter
      data={users}
      columns={[
      { accessorKey: 'name', header: 'Name' },
      { accessorKey: 'email', header: 'Email' },
      ]}
      />