Configuring Header Menu Content
In this section we are going to configure the elements of Header Menu right side menu.
The elements and its visibility are configure through packages/app/bundles/custom/menu.tsx
.
To modify/add elements of this menu you have modify the previous file. The structure of element is the following:
{ label: "Profile", path: "/profile", visibility: session => session.loggedIn }
Property | Description |
label | Menu label name |
path | Path to redirect when click on element |
visibility | Controls the visibility of the item |