UNPKG

@ackplus/react-tanstack-data-table

Version:

A powerful React data table component built with MUI and TanStack Table

14 lines (13 loc) 582 B
import { Row } from '@tanstack/react-table'; import { ReactNode } from 'react'; export interface DataTableRowProps<T> { row: Row<T>; enableHover?: boolean; enableStripes?: boolean; isOdd?: boolean; renderSubComponent?: (row: Row<T>) => ReactNode; disableStickyHeader?: boolean; slots?: Record<string, any>; slotProps?: Record<string, any>; } export declare function DataTableRow<T>({ row, enableHover, enableStripes, isOdd, renderSubComponent, disableStickyHeader, slots, slotProps, }: DataTableRowProps<T>): import("react/jsx-runtime").JSX.Element;