@hubee/hubee-ui-table
Version:
Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React
12 lines (11 loc) • 378 B
TypeScript
/// <reference types="react" />
import { Row } from 'react-table';
import { Action, TableRowOptions } from '@/core/interfaces';
interface BodyMapRowProps {
rows: Row<any>[];
prepareRow: (row: Row<any>) => void;
actions?: Action<any>[];
rowOptions: TableRowOptions;
}
export default function BodyMapRow(props: BodyMapRowProps): JSX.Element;
export {};