sorting list creation draft done

This commit is contained in:
2026-04-03 11:43:17 +10:00
parent 4a6659f26e
commit a316762ad3
3 changed files with 80 additions and 2 deletions

View File

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