Create OrdersPage, load orders from backend, move NavDrawer items to Component
This commit is contained in:
6
software/src/data/enums/bannerStateEnum.ts
Normal file
6
software/src/data/enums/bannerStateEnum.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export enum BannerStateEnum {
|
||||
DATABASERESETSUCCESSFUL,
|
||||
ERROR,
|
||||
WRONGLOGIN,
|
||||
LOGINSUCCESSFUL
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import { BannerStateEnum } from "../enums/bannerStateEnum"
|
||||
|
||||
export default class BannerModel {
|
||||
message: string = "Success!"
|
||||
show: boolean = false
|
||||
color: string = "green"
|
||||
icon: string = "mdi-check"
|
||||
bannerState: BannerStateEnum = BannerStateEnum.ERROR
|
||||
}
|
||||
Reference in New Issue
Block a user