Skip to content

Instantly share code, notes, and snippets.

@ArtemRomanovsky
Created February 20, 2020 15:55
Show Gist options
  • Save ArtemRomanovsky/2d4a28e416bebdd034af63884ef206ad to your computer and use it in GitHub Desktop.
Save ArtemRomanovsky/2d4a28e416bebdd034af63884ef206ad to your computer and use it in GitHub Desktop.
export const PagesRoutes:RouterConfig = [
{
path: 'pages',
component: Pages,
children: [
{
path: 'dashboard',
component: Dashboard,
data: {
menu: {
title: 'Dashboard',
icon: 'ion-android-home',
selected: false,
expanded: false,
order: 0
}
}
}
// rest of the items
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment