21 lines
589 B
TypeScript
21 lines
589 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { RouterModule, Routes } from '@angular/router';
|
||
|
|
||
|
import { SharedModule } from '../shared/shared.module';
|
||
|
|
||
|
import { DashboardComponent } from './dashboard.component';
|
||
|
import { DashboardHeroComponent } from './dashboard-hero.component';
|
||
|
|
||
|
const routes: Routes = [
|
||
|
{ path: 'dashboard', component: DashboardComponent },
|
||
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
SharedModule,
|
||
|
RouterModule.forChild(routes)
|
||
|
],
|
||
|
declarations: [ DashboardComponent, DashboardHeroComponent ]
|
||
|
})
|
||
|
export class DashboardModule { }
|