Added Main Projects to Menu (dynamically)

This commit is contained in:
Paolo Arena
2019-03-31 14:27:27 +02:00
parent 38b3405664
commit cea5dd118a
8 changed files with 98 additions and 78 deletions

View File

@@ -55,13 +55,23 @@ export interface IGlobalState {
connData: IConnData
posts: IPost[]
menulinks: {}
listatodo: ITodoList[]
listatodo: IMenuList[]
arrConfig: IConfig[]
}
export interface ITodoList {
namecat: string
export interface IMenuList {
name: string
description: string
idelem?: string
icon?: string
}
export interface IListRoutes {
route: string
faIcon: string
materialIcon: string
name: string
routes2: []
level_parent: string
level_child: string
}