Menu
This guide provides an overview of how to use, manage, and customize the menu configuration in your project.
Adding or Removing Menu Items
const newGroup: NavItemType = { id: 'group-new', title: "newGroup", icon: 'IconNew', type: 'group', children: [ { id: 'new-item', title: "newItem", type: 'item', url: '/new-item', icon: 'IconLink' } ] }; export default newGroup;import newGroup from './newGroup'; const menuItems: { items: NavItemType[] } = { items: [manage, other, newGroup] }; export default menuItems;const menuItems: { items: NavItemType[] } = { items: [manage] // Removed "other" menu group };{ id: 'reports', title: "reports", type: 'item', url: '/reports', icon: 'IconReport' }
Changing Icons
Managing Roles
Translation Keys
Last updated