17 lines
388 B
TypeScript
Executable File
17 lines
388 B
TypeScript
Executable File
import { Routes } from '@angular/router';
|
|
import { StarterComponent } from './starter/starter.component';
|
|
|
|
export const PagesRoutes: Routes = [
|
|
{
|
|
path: '',
|
|
component: StarterComponent,
|
|
data: {
|
|
title: 'Starter Page',
|
|
urls: [
|
|
{ title: 'Dashboard', url: '/dashboards/dashboard1' },
|
|
{ title: 'Starter Page' },
|
|
],
|
|
},
|
|
},
|
|
];
|