razor-shared-library
Version:
9 lines (8 loc) • 300 B
TypeScript
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 {};