This commit is contained in:
Marta Kowalska
2025-10-22 08:13:59 +00:00
commit 80ca059fb8
162 changed files with 16816 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { useMemo } from 'react';
import './NameAndDateCell.css';
export default function NameAndDateCell({ row }) {
const date = useMemo(() => row.start.toLocaleDateString(), [row.start]);
return (
<>
<div className="wx-4qJ64Gcp text">{row.text}</div>
<div className="wx-4qJ64Gcp date">{date}</div>
</>
);
}