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 0000000000000000000000000000000000000000..5ee4ba0dcc339fc52ef74dea95302938da7d43bd
--- /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 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
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 0000000000000000000000000000000000000000..0b5da7180021cfd25ad195e686dd9bead9444cab
--- /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 0000000000000000000000000000000000000000..6444fa9a8adef0399daca900afc224b50d6f1e01
--- /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() {
+  }
+
+}