app.routes.ts 291 B

1234567
  1. import { Routes } from '@angular/router';
  2. import { DashboardComponent } from './dashboard/dashboard.component';
  3. export const routes: Routes = [
  4. { path: '', redirectTo: '/dashboard', pathMatch: 'full' },
  5. {path:'dashboard', component: DashboardComponent, data: {title: 'FIS App'}}
  6. ];