diff --git a/src/app/pages/components/components-routing.module.ts b/src/app/pages/components/components-routing.module.ts index 7a3f4d51..655666d8 100644 --- a/src/app/pages/components/components-routing.module.ts +++ b/src/app/pages/components/components-routing.module.ts @@ -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, ]; diff --git a/src/app/pages/components/toaster/toaster.component.html b/src/app/pages/components/notifications/notifications.component.html similarity index 99% rename from src/app/pages/components/toaster/toaster.component.html rename to src/app/pages/components/notifications/notifications.component.html index ab12e756..183c08c5 100644 --- a/src/app/pages/components/toaster/toaster.component.html +++ b/src/app/pages/components/notifications/notifications.component.html @@ -4,6 +4,7 @@ +