add component to check tombstones WC-2

This commit is contained in:
Bartosz Szukała 2019-12-16 14:55:05 +01:00
parent d0005bad01
commit 2a98b2a295
7 changed files with 48 additions and 1 deletions

View File

@ -25,6 +25,7 @@ import {UserProfileComponent} from './pages/user-profile/user-profile.component'
import { MDBBootstrapModule } from 'angular-bootstrap-md';
import {FooterComponent} from './components/footer/footer.component';
import { BuyTombstoneComponent } from './pages/buy-tombstone/buy-tombstone.component';
import { CheckTombstoneComponent } from './pages/check-tombstone/check-tombstone.component';
@NgModule({
declarations: [
@ -35,7 +36,8 @@ import { BuyTombstoneComponent } from './pages/buy-tombstone/buy-tombstone.compo
RegisterComponent,
UserProfileComponent,
FooterComponent,
BuyTombstoneComponent
BuyTombstoneComponent,
CheckTombstoneComponent
],
imports: [
BrowserModule,

View File

@ -0,0 +1,3 @@
/*# sourceMappingURL=check-tombstone.component.css.map */

View File

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":[],"names":[],"mappings":"","file":"check-tombstone.component.css"}

View File

@ -0,0 +1 @@
<p>check-tombstone works!</p>

View File

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CheckTombstoneComponent } from './check-tombstone.component';
describe('CheckTombstoneComponent', () => {
let component: CheckTombstoneComponent;
let fixture: ComponentFixture<CheckTombstoneComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CheckTombstoneComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CheckTombstoneComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-check-tombstone',
templateUrl: './check-tombstone.component.html',
styleUrls: ['./check-tombstone.component.scss']
})
export class CheckTombstoneComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}