diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 618e686c611bd200b022e13fa4cceac368bf099c..a95c4db1b290c3d4951a02769c98f18a84c59971 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -75,6 +75,7 @@ import { ContentAnswerService } from './content-answer.service';
 import { RoomDeletionComponent } from './room-deletion/room-deletion.component';
 import { AnswerStatisticsComponent } from './answer-statistics/answer-statistics.component';
 import { RoomModificationComponent } from './room-modification/room-modification.component';
+import { ParticipantChoiceContentComponent } from './participant-choice-content/participant-choice-content.component';
 
 @NgModule({
   declarations: [
@@ -103,7 +104,8 @@ import { RoomModificationComponent } from './room-modification/room-modification
     ContentAnswersListComponent,
     RoomDeletionComponent,
     RoomModificationComponent,
-    AnswerStatisticsComponent
+    AnswerStatisticsComponent,
+    ParticipantChoiceContentComponent
   ],
   entryComponents: [
     RegisterComponent,
diff --git a/src/app/participant-choice-content/participant-choice-content.component.html b/src/app/participant-choice-content/participant-choice-content.component.html
new file mode 100644
index 0000000000000000000000000000000000000000..de31e4f9310529a9bfa75d4661012d4a09176d12
--- /dev/null
+++ b/src/app/participant-choice-content/participant-choice-content.component.html
@@ -0,0 +1,3 @@
+<p>
+  participant-choice-content works!
+</p>
diff --git a/src/app/participant-choice-content/participant-choice-content.component.scss b/src/app/participant-choice-content/participant-choice-content.component.scss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/src/app/participant-choice-content/participant-choice-content.component.spec.ts b/src/app/participant-choice-content/participant-choice-content.component.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..bb07ae23f1829cb57da2adf0ed8b7a46f5cb07bd
--- /dev/null
+++ b/src/app/participant-choice-content/participant-choice-content.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ParticipantChoiceContentComponent } from './participant-choice-content.component';
+
+describe('ParticipantChoiceContentComponent', () => {
+  let component: ParticipantChoiceContentComponent;
+  let fixture: ComponentFixture<ParticipantChoiceContentComponent>;
+
+  beforeEach(async(() => {
+    TestBed.configureTestingModule({
+      declarations: [ ParticipantChoiceContentComponent ]
+    })
+    .compileComponents();
+  }));
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(ParticipantChoiceContentComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});
diff --git a/src/app/participant-choice-content/participant-choice-content.component.ts b/src/app/participant-choice-content/participant-choice-content.component.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7e9ef1cd9ade80af839e64413a21ce922f49864a
--- /dev/null
+++ b/src/app/participant-choice-content/participant-choice-content.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-participant-choice-content',
+  templateUrl: './participant-choice-content.component.html',
+  styleUrls: ['./participant-choice-content.component.scss']
+})
+export class ParticipantChoiceContentComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit() {
+  }
+
+}