ngx-admin/src/app/pages/pages-menu.ts

32 lines
604 B
TypeScript
Raw Normal View History

import { NgaMenuItem } from '@nga/theme';
import { List } from 'immutable';
export const menuItems: List<NgaMenuItem> = List([
{
2017-04-17 19:01:47 +03:00
title: 'Dashboard',
icon: 'ion ion-ios-home-outline',
2017-04-17 19:01:47 +03:00
link: '/pages/dashboard',
home: true,
},
{
title: 'Features',
group: true,
},
{
title: 'UI Features',
icon: 'ion ion-ios-keypad-outline',
link: '/pages/ui-features',
2017-04-17 19:01:47 +03:00
},
{
title: 'Components',
icon: 'ion ion-ios-gear-outline',
link: '/pages/components',
2017-04-17 19:01:47 +03:00
},
{
title: 'Maps',
icon: 'ion ion-ios-location-outline',
link: '/pages/maps',
},
]);