Adds dynamic table with initial settings page

This commit is contained in:
Jamie Curnow
2021-07-26 00:14:00 +10:00
parent 1bb66c13d5
commit 5ec02d8cb0
9 changed files with 344 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
export interface Sort {
field: string;
direction: "ASC" | "DESC";
}
export interface Setting {
id: number;
createdOn: number;
modifiedOn: number;
name: string;
value: any;
}