Skip to content

Commit

Permalink
wall component completed
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshikomba committed Mar 5, 2018
1 parent 6c6594d commit 131fb98
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 0 deletions.
Empty file.
3 changes: 3 additions & 0 deletions src/app/profile/wall/wall.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<p>
wall works!
</p>
25 changes: 25 additions & 0 deletions src/app/profile/wall/wall.component.spec.ts
Original file line number Diff line number Diff line change
@@ -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<WallComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ WallComponent ]
})
.compileComponents();
}));

beforeEach(() => {
fixture = TestBed.createComponent(WallComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
15 changes: 15 additions & 0 deletions src/app/profile/wall/wall.component.ts
Original file line number Diff line number Diff line change
@@ -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() {
}

}

0 comments on commit 131fb98

Please sign in to comment.