Wrapper component that manages loading states for TableAdapter
This component separates loading UI concerns from the table component itself, providing a clean way to handle initial loading and pagination loading states.
<TableWithLoadingStates isInitialLoading={isLoading} isPaginationLoading={isPaginating}> <TableAdapter data={data} columns={columns} /></TableWithLoadingStates> Copy
<TableWithLoadingStates isInitialLoading={isLoading} isPaginationLoading={isPaginating}> <TableAdapter data={data} columns={columns} /></TableWithLoadingStates>
Wrapper component that manages loading states for TableAdapter
This component separates loading UI concerns from the table component itself, providing a clean way to handle initial loading and pagination loading states.