BETTERZON-33: Added routing

This commit is contained in:
2020-12-02 09:02:24 +01:00
parent b5c9da6055
commit e91a0085f6
9 changed files with 73 additions and 55 deletions
+5 -3
View File
@@ -3,16 +3,18 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { HelloWorldComponent } from './hello-world/hello-world.component';
import { ProductListComponentComponent } from './product-list-component/product-list-component.component';
import { AppRoutingModule } from './app-routing.module';
import { ProductListComponent } from './product-list/product-list.component';
@NgModule({
declarations: [
AppComponent,
HelloWorldComponent,
ProductListComponentComponent
ProductListComponent
],
imports: [
BrowserModule
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]