20 lines
368 B
React
20 lines
368 B
React
/*************************** MENU ITEMS - APPLICATIONS ***************************/
|
|
|
|
const manage = {
|
|
id: 'group-manage',
|
|
title: 'Manage',
|
|
icon: 'IconBrandAsana',
|
|
type: 'group',
|
|
children: [
|
|
{
|
|
id: 'dashboard',
|
|
title: 'Dashboard',
|
|
type: 'item',
|
|
url: '/dashboard',
|
|
icon: 'IconLayoutGrid'
|
|
}
|
|
]
|
|
};
|
|
|
|
export default manage;
|