From 17b3b0383bc8b9e7448b08795ac05de1c27bf147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gro=C3=9F?= <thomas.gross@mni.thm.de> Date: Mon, 18 Mar 2019 15:38:15 +0100 Subject: [PATCH] initial commit --- .../submit-comment.component.html | 3 +++ .../submit-comment.component.scss | 0 .../submit-comment.component.spec.ts | 25 +++++++++++++++++++ .../submit-comment.component.ts | 15 +++++++++++ 4 files changed, 43 insertions(+) create mode 100644 src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.html create mode 100644 src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.scss create mode 100644 src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.spec.ts create mode 100644 src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.ts diff --git a/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.html b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.html new file mode 100644 index 000000000..5ee4ba0dc --- /dev/null +++ b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.html @@ -0,0 +1,3 @@ +<p> + submit-comment works! +</p> diff --git a/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.scss b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.spec.ts b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.spec.ts new file mode 100644 index 000000000..0b5da7180 --- /dev/null +++ b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { SubmitCommentComponent } from './submit-comment.component'; + +describe('SubmitCommentComponent', () => { + let component: SubmitCommentComponent; + let fixture: ComponentFixture<SubmitCommentComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ SubmitCommentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(SubmitCommentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.ts b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.ts new file mode 100644 index 000000000..6444fa9a8 --- /dev/null +++ b/src/app/components/participant/_diaglogs/submit-comment/submit-comment.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-submit-comment', + templateUrl: './submit-comment.component.html', + styleUrls: ['./submit-comment.component.scss'] +}) +export class SubmitCommentComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} -- GitLab