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