From 131fb98d9d1345aa8de684fb6d5628c84881ef82 Mon Sep 17 00:00:00 2001 From: Tangeni Date: Tue, 6 Mar 2018 01:06:41 +0200 Subject: [PATCH] wall component completed --- src/app/profile/wall/wall.component.css | 0 src/app/profile/wall/wall.component.html | 3 +++ src/app/profile/wall/wall.component.spec.ts | 25 +++++++++++++++++++++ src/app/profile/wall/wall.component.ts | 15 +++++++++++++ 4 files changed, 43 insertions(+) create mode 100644 src/app/profile/wall/wall.component.css create mode 100644 src/app/profile/wall/wall.component.html create mode 100644 src/app/profile/wall/wall.component.spec.ts create mode 100644 src/app/profile/wall/wall.component.ts diff --git a/src/app/profile/wall/wall.component.css b/src/app/profile/wall/wall.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/profile/wall/wall.component.html b/src/app/profile/wall/wall.component.html new file mode 100644 index 0000000..ec95f51 --- /dev/null +++ b/src/app/profile/wall/wall.component.html @@ -0,0 +1,3 @@ +

+ wall works! +

diff --git a/src/app/profile/wall/wall.component.spec.ts b/src/app/profile/wall/wall.component.spec.ts new file mode 100644 index 0000000..c3a9013 --- /dev/null +++ b/src/app/profile/wall/wall.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { WallComponent } from './wall.component'; + +describe('WallComponent', () => { + let component: WallComponent; + let fixture: ComponentFixture; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ WallComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(WallComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/profile/wall/wall.component.ts b/src/app/profile/wall/wall.component.ts new file mode 100644 index 0000000..3940623 --- /dev/null +++ b/src/app/profile/wall/wall.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-wall', + templateUrl: './wall.component.html', + styleUrls: ['./wall.component.css'] +}) +export class WallComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}