lab 5 done

This commit is contained in:
2026-04-10 11:34:16 +10:00
parent 88721a25cd
commit 084d3ed9ca
5 changed files with 239 additions and 22 deletions

View File

@@ -12,7 +12,7 @@ const TableRow = (props) => {
: props.row.map((item, index) => <th key={ index }> {item} </th>);
return(
<> {cells} </>
<>{cells}</>
)
}