BETTERZON-41: Adding PDP Component

This commit is contained in:
2020-12-02 18:36:30 +01:00
parent 4100192f02
commit cbe8ad8f00
6 changed files with 46 additions and 2 deletions
+2 -1
View File
@@ -4,10 +4,11 @@ import {RouterModule, Routes} from '@angular/router';
import {AppComponent} from './app.component';
import {ProductListComponent} from './product-list/product-list.component';
import {LandingpageComponent} from './landingpage/landingpage.component';
import {ProductDetailPageComponent} from './product-detail-page/product-detail-page.component';
const routes: Routes = [
{path: '', component: LandingpageComponent},
{path: 'pdp', component: ProductListComponent}
{path: 'product', component: ProductDetailPageComponent}
];
@NgModule({