import clsx from 'clsx' import {FC} from 'react' import {Row} from 'react-table' import {User} from '../../../core/_models' type Props = { row: Row } const CustomRow: FC = ({row}) => ( {row.cells.map((cell) => { return ( {cell.render('Cell')} ) })} ) export {CustomRow}