-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
117 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { ClickAndCollectComponent } from './pages/click-and-collect/click-and-collect.component'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: ClickAndCollectComponent, | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [ClickAndCollectComponent], | ||
imports: [CommonModule, RouterModule.forChild(routes)], | ||
}) | ||
export class ClickAndCollectModule {} |
File renamed without changes.
File renamed without changes.
5 changes: 1 addition & 4 deletions
5
...nd-collect/click-and-collect.component.ts → ...nd-collect/click-and-collect.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { DeliveryComponent } from './pages/delivery/delivery.component'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: DeliveryComponent, | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [DeliveryComponent], | ||
imports: [CommonModule, RouterModule.forChild(routes)], | ||
}) | ||
export class DeliveryModule {} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { ImprintComponent } from './pages/imprint/imprint.component'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: ImprintComponent, | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [ImprintComponent], | ||
imports: [CommonModule, RouterModule.forChild(routes)], | ||
}) | ||
export class ImprintModule {} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { PrivacyPolicyComponent } from './pages/privacy-policy/privacy-policy.component'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: PrivacyPolicyComponent, | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [PrivacyPolicyComponent], | ||
imports: [CommonModule, RouterModule.forChild(routes)], | ||
}) | ||
export class PrivacyPolicyModule {} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { ReturnsComponent } from './pages/returns/returns.component'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: ReturnsComponent, | ||
}, | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [ReturnsComponent], | ||
imports: [CommonModule, RouterModule.forChild(routes)], | ||
}) | ||
export class ReturnsModule {} |