Added sorting, started on paging

This commit is contained in:
2024-09-10 21:58:24 -04:00
parent 1e3dc2938b
commit 7a525930db
18 changed files with 558 additions and 177 deletions

5
src/enums/sort.ts Normal file
View File

@@ -0,0 +1,5 @@
export enum SORT {
NONE = 'none',
ASC = 'asc',
DSC = 'dsc',
}