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