import { Section, SectionStartPart, SectionTitle, UsersList, Right, } from './TableCard.styled'; const TableCard = ({ table, onNavigate }) => { const handleClick = () => { if (onNavigate) { onNavigate(table.id); } }; return (