sorting done

This commit is contained in:
2026-02-27 11:00:27 +10:00
parent c3996ec6c6
commit 4cf18c4895
4 changed files with 181 additions and 4 deletions

View File

@@ -30,7 +30,9 @@ const createHeaderRow = (headers) => {
th.innerHTML = header;
tr.append(th);
});
return tr;
const thead = document.createElement('thead')
thead.appendChild(tr)
return thead;
};
const createBodyRows = (rows) => {