import React from "react"; import { ReactNode } from "react"; import StyledTableCell from "./StyledTableCell"; export type TableCellProps = { children: ReactNode | string; className?: string; }; const TableCell: React.FC = ({ children, className }) => { return {children}; }; export default TableCell;