UNPKG

razor-shared-library

Version:
9 lines (8 loc) 300 B
import { ReactElement } from 'react'; import { HeadCell } from '../../../../../../../../../src/components/factory/entity-table/types'; interface Props<T> { headCells: HeadCell<T>[]; row: T; } export default function EntityTableCell<T>({ headCells, row, }: Props<T>): ReactElement; export {};