package renderer type LayoutState struct { AdministrationState AdministrationState Menu any ActiveMenu string // DEPRECATED MenuItems []MenuItem } // DEPRECATED type MenuItem struct { Title string Link string Active bool Icon string } type AdministrationState struct { Display bool Active bool }