fix(demo): rename toaster to notifications

This commit is contained in:
KostyaDanovsky 2017-07-24 12:04:40 +03:00
parent ef994704c2
commit 2e186f2bd6
5 changed files with 11 additions and 10 deletions

View file

@ -3,7 +3,7 @@ import { Routes, RouterModule } from '@angular/router';
import { ComponentsComponent } from './components.component';
import { TreeComponent } from './tree/tree.component';
import { ToasterComponent } from './toaster/toaster.component';
import { NotificationsComponent } from './notifications/notifications.component';
const routes: Routes = [{
path: '',
@ -13,8 +13,8 @@ const routes: Routes = [{
path: 'tree',
component: TreeComponent,
}, {
path: 'toaster',
component: ToasterComponent,
path: 'notifications',
component: NotificationsComponent,
},
],
}];
@ -28,5 +28,5 @@ export class ComponentsRoutingModule { }
export const routedComponents = [
ComponentsComponent,
TreeComponent,
ToasterComponent,
NotificationsComponent,
];