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
+16
View File
@@ -0,0 +1,16 @@
import { useMemo } from 'react';
import UserStub from './UserStub.jsx';
import { users } from '../data';
function AvatarCell(props) {
const { row } = props;
const user = useMemo(
() => users.find((u) => u.id == row.assigned),
[row.assigned, users],
);
return <UserStub user={user} />;
}
export default AvatarCell;