diff --git a/src/app/answer-statistics/answer-statistics.component.html b/src/app/answer-statistics/answer-statistics.component.html new file mode 100644 index 0000000000000000000000000000000000000000..c9d9752197eb33a3f9f4f61d0c43380072f5349a --- /dev/null +++ b/src/app/answer-statistics/answer-statistics.component.html @@ -0,0 +1,3 @@ +<p> + answer-statistics works! +</p> diff --git a/src/app/answer-statistics/answer-statistics.component.scss b/src/app/answer-statistics/answer-statistics.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/answer-statistics/answer-statistics.component.spec.ts b/src/app/answer-statistics/answer-statistics.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..44567afe6d8b30c5e65f91ba1877ba2b7f8da9bd --- /dev/null +++ b/src/app/answer-statistics/answer-statistics.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AnswerStatisticsComponent } from './answer-statistics.component'; + +describe('AnswerStatisticsComponent', () => { + let component: AnswerStatisticsComponent; + let fixture: ComponentFixture<AnswerStatisticsComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ AnswerStatisticsComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(AnswerStatisticsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/answer-statistics/answer-statistics.component.ts b/src/app/answer-statistics/answer-statistics.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..4673b5ee2a07f181c5c289ac1662840c34e70166 --- /dev/null +++ b/src/app/answer-statistics/answer-statistics.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-answer-statistics', + templateUrl: './answer-statistics.component.html', + styleUrls: ['./answer-statistics.component.scss'] +}) +export class AnswerStatisticsComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}