diff --git a/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.html b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.html new file mode 100644 index 0000000000000000000000000000000000000000..834b5d8e7dcb2637091e89804b885ad5bb84eed9 --- /dev/null +++ b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.html @@ -0,0 +1,3 @@ +<p> + delete-comment works! +</p> diff --git a/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.scss b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.scss new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.spec.ts b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..ab32bb3ba5da64f11275893e6d314f19f40947d1 --- /dev/null +++ b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.spec.ts @@ -0,0 +1,27 @@ +/* +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { DeleteCommentComponent } from './delete-comment.component'; + +describe('DeleteCommentComponent', () => { + let component: DeleteCommentComponent; + let fixture: ComponentFixture<DeleteCommentComponent>; + + beforeEach(async(() => { + TestBed.configureTestingModule({ + declarations: [ DeleteCommentComponent ] + }) + .compileComponents(); + })); + + beforeEach(() => { + fixture = TestBed.createComponent(DeleteCommentComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); +*/ diff --git a/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.ts b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.ts new file mode 100644 index 0000000000000000000000000000000000000000..bb62152c9523b9ac863247d913a20b94302c1ec4 --- /dev/null +++ b/src/app/components/shared/_dialogs/delete-comment/delete-comment.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-delete-comment', + templateUrl: './delete-comment.component.html', + styleUrls: ['./delete-comment.component.scss'] +}) +export class DeleteCommentComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +} diff --git a/src/app/components/shared/shared.module.ts b/src/app/components/shared/shared.module.ts index 6177977e4f3d53471955fa700736f3df240f6bdc..a36d768cf5dc6ab23239b8d67f2c26e4271f7bb7 100644 --- a/src/app/components/shared/shared.module.ts +++ b/src/app/components/shared/shared.module.ts @@ -24,6 +24,7 @@ import { StatisticHelpComponent } from './_dialogs/statistic-help/statistic-help import { CommentComponent } from './comment/comment.component'; import { CreateCommentComponent } from './_dialogs/create-comment/create-comment.component'; import { PresentCommentComponent } from './_dialogs/present-comment/present-comment.component'; +import { DeleteCommentComponent } from './_dialogs/delete-comment/delete-comment.component'; @NgModule({ imports: [ @@ -54,7 +55,8 @@ import { PresentCommentComponent } from './_dialogs/present-comment/present-comm StatisticHelpComponent, CommentComponent, CreateCommentComponent, - PresentCommentComponent + PresentCommentComponent, + DeleteCommentComponent ], exports: [ RoomJoinComponent,