import * as React from 'react'; import { Link } from 'react-router-dom'; type OwnProps = { name: string; picture?: string; href: string; children?: React.ReactNode; }; function ClickableCell({ href, children }: OwnProps) { return {children}; } export default ClickableCell;