Big refactoring of PARCOURSMOB - Initial commit

This commit is contained in:
2022-08-11 17:26:55 +02:00
commit 7225d027c9
65 changed files with 10276 additions and 0 deletions

18
renderer/layout.go Normal file
View File

@@ -0,0 +1,18 @@
package renderer
type LayoutState struct {
AdministrationState AdministrationState
MenuItems []MenuItem
}
type MenuItem struct {
Title string
Link string
Active bool
Icon string
}
type AdministrationState struct {
Display bool
Active bool
}