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

View File

@@ -2,7 +2,9 @@ export enum Milestone {
Cohort = 'cohort',
Year = 'year',
County = 'mcode',
CountyLabel = 'county',
School = 'lcode',
SchoolLabel = 'school',
Grade = 'grade',
ELACount = 'ecount',
ELAMean = 'emean',

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

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