diff --git a/src/app/app.module.ts b/src/app/app.module.ts index f8a7e1ac4efd363f947f208b45543738ce33e990..d1156587e43fbac9d2dc15713acd13233041ee60 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -58,6 +58,7 @@ import { AuthenticationGuard } from './authentication.guard'; import { RoomService } from './room.service'; import { RoomListComponent } from './room-list/room-list.component'; import { CreatorHomeScreenComponent } from './creator-home-screen/creator-home-screen.component'; +import { CreateCommentComponent } from './create-comment/create-comment.component'; @NgModule({ declarations: [ @@ -73,7 +74,8 @@ import { CreatorHomeScreenComponent } from './creator-home-screen/creator-home-s RegisterComponent, RoomCreationComponent, RoomListComponent, - CreatorHomeScreenComponent + CreatorHomeScreenComponent, + CreateCommentComponent ], entryComponents: [ RegisterComponent, @@ -83,9 +85,6 @@ import { CreatorHomeScreenComponent } from './creator-home-screen/creator-home-s AppRoutingModule, BrowserModule, BrowserAnimationsModule, - MatButtonModule, - MatInputModule, - BrowserAnimationsModule, FlexLayoutModule, FormsModule, MatAutocompleteModule, diff --git a/src/app/create-comment/create-comment.component.html b/src/app/create-comment/create-comment.component.html new file mode 100644 index 0000000000000000000000000000000000000000..3e7d5aca40499eced2f80d62eab767618568815f --- /dev/null +++ b/src/app/create-comment/create-comment.component.html @@ -0,0 +1,3 @@ +<p> + create-comment works! +</p> diff --git a/src/app/create-comment/create-comment.component.scss b/src/app/create-comment/create-comment.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/create-comment/create-comment.component.spec.ts b/src/app/create-comment/create-comment.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..eccf5fa7e4462f47147ab1b407667a1a5327b696 --- /dev/null +++ b/src/app/create-comment/create-comment.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CreateCommentComponent } from './create-comment.component'; + +describe('CreateCommentComponent', () => { + let component: CreateCommentComponent; + let fixture: ComponentFixture<CreateCommentComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CreateCommentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CreateCommentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/create-comment/create-comment.component.ts b/src/app/create-comment/create-comment.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..1d786050772a3b51b4ae8618b0e4d0348ff2f85e --- /dev/null +++ b/src/app/create-comment/create-comment.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-create-comment', + templateUrl: './create-comment.component.html', + styleUrls: ['./create-comment.component.scss'] +}) +export class CreateCommentComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}