diff --git a/src/app/app.module.ts b/src/app/app.module.ts index d1156587e43fbac9d2dc15713acd13233041ee60..3e5072769adae2e8c4177386b4dffac96a1eacc8 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -8,6 +8,7 @@ import { JoinRoomComponent } from './join-room/join-room.component'; import { LoginComponent } from './login/login.component'; import { RegisterComponent } from './register/register.component'; import { PasswordResetComponent } from './password-reset/password-reset.component'; +import { CommentComponent } from './comment/comment.component'; import { AppRoutingModule } from './app-routing.module'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @@ -75,7 +76,8 @@ import { CreateCommentComponent } from './create-comment/create-comment.componen RoomCreationComponent, RoomListComponent, CreatorHomeScreenComponent, - CreateCommentComponent + CreateCommentComponent, + CommentComponent ], entryComponents: [ RegisterComponent, diff --git a/src/app/comment/comment.component.html b/src/app/comment/comment.component.html new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/comment/comment.component.scss b/src/app/comment/comment.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/comment/comment.component.spec.ts b/src/app/comment/comment.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..bcac3f25f13c3e3be6e4741ef17af9dcc8e4accf --- /dev/null +++ b/src/app/comment/comment.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CommentComponent } from './comment.component'; + +describe('CommentComponent', () => { + let component: CommentComponent; + let fixture: ComponentFixture<CommentComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ CommentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(CommentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/comment/comment.component.ts b/src/app/comment/comment.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..0d47e825d4e55f6c6e68180b96b3b83a32b75270 --- /dev/null +++ b/src/app/comment/comment.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-comment', + templateUrl: './comment.component.html', + styleUrls: ['./comment.component.scss'] +}) +export class CommentComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}