import React, { ReactNode } from "react"; import StyledTableRow from "./StyledTableRow"; export type TableRowProps = { children: ReactNode; className?: string; }; const TableRow: React.FC = ({ children, className }) => { return {children}; }; export default TableRow;