From 25a920b3ef30d868cecf514e82da0ea1f54644c4 Mon Sep 17 00:00:00 2001 From: umasoodch Date: Thu, 24 Jun 2021 11:49:29 +0300 Subject: [PATCH] added new comps --- .../add-address/add-address.component.html | 3 +++ .../add-address/add-address.component.scss | 0 .../add-address/add-address.component.spec.ts | 27 +++++++++++++++++++ .../add-address/add-address.component.ts | 14 ++++++++++ .../confirm-address.component.html | 3 +++ .../confirm-address.component.scss | 0 .../confirm-address.component.spec.ts | 27 +++++++++++++++++++ .../confirm-address.component.ts | 14 ++++++++++ 8 files changed, 88 insertions(+) create mode 100644 Mohem/src/app/profile/add-address/add-address.component.html create mode 100644 Mohem/src/app/profile/add-address/add-address.component.scss create mode 100644 Mohem/src/app/profile/add-address/add-address.component.spec.ts create mode 100644 Mohem/src/app/profile/add-address/add-address.component.ts create mode 100644 Mohem/src/app/profile/confirm-address/confirm-address.component.html create mode 100644 Mohem/src/app/profile/confirm-address/confirm-address.component.scss create mode 100644 Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts create mode 100644 Mohem/src/app/profile/confirm-address/confirm-address.component.ts diff --git a/Mohem/src/app/profile/add-address/add-address.component.html b/Mohem/src/app/profile/add-address/add-address.component.html new file mode 100644 index 00000000..68757de5 --- /dev/null +++ b/Mohem/src/app/profile/add-address/add-address.component.html @@ -0,0 +1,3 @@ +

+ add-address works! +

diff --git a/Mohem/src/app/profile/add-address/add-address.component.scss b/Mohem/src/app/profile/add-address/add-address.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/Mohem/src/app/profile/add-address/add-address.component.spec.ts b/Mohem/src/app/profile/add-address/add-address.component.spec.ts new file mode 100644 index 00000000..230a9c8c --- /dev/null +++ b/Mohem/src/app/profile/add-address/add-address.component.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AddAddressComponent } from './add-address.component'; + +describe('AddAddressComponent', () => { + let component: AddAddressComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AddAddressComponent ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AddAddressComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/Mohem/src/app/profile/add-address/add-address.component.ts b/Mohem/src/app/profile/add-address/add-address.component.ts new file mode 100644 index 00000000..4283c002 --- /dev/null +++ b/Mohem/src/app/profile/add-address/add-address.component.ts @@ -0,0 +1,14 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-add-address', + templateUrl: './add-address.component.html', + styleUrls: ['./add-address.component.scss'], +}) +export class AddAddressComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +} diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.html b/Mohem/src/app/profile/confirm-address/confirm-address.component.html new file mode 100644 index 00000000..5bb94ad6 --- /dev/null +++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.html @@ -0,0 +1,3 @@ +

+ confirm-address works! +

diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.scss b/Mohem/src/app/profile/confirm-address/confirm-address.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts b/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts new file mode 100644 index 00000000..1dd47b56 --- /dev/null +++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.spec.ts @@ -0,0 +1,27 @@ +import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ConfirmAddressComponent } from './confirm-address.component'; + +describe('ConfirmAddressComponent', () => { + let component: ConfirmAddressComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ ConfirmAddressComponent ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(ConfirmAddressComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/Mohem/src/app/profile/confirm-address/confirm-address.component.ts b/Mohem/src/app/profile/confirm-address/confirm-address.component.ts new file mode 100644 index 00000000..0af75309 --- /dev/null +++ b/Mohem/src/app/profile/confirm-address/confirm-address.component.ts @@ -0,0 +1,14 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-confirm-address', + templateUrl: './confirm-address.component.html', + styleUrls: ['./confirm-address.component.scss'], +}) +export class ConfirmAddressComponent implements OnInit { + + constructor() { } + + ngOnInit() {} + +}