From efac52a269aa9ae3539ab9e673371dc60181c6f9 Mon Sep 17 00:00:00 2001 From: kaw67872 <kawtar.laariche@iais.fraunhofer.de> Date: Fri, 3 May 2024 20:31:00 +0200 Subject: [PATCH] #19: add reply to comments page component --- .../reply-to-comments-page.component.html | 1 + .../reply-to-comments-page.component.scss | 0 .../reply-to-comments-page.component.spec.ts | 23 +++++++++++++++++++ .../reply-to-comments-page.component.ts | 13 +++++++++++ 4 files changed, 37 insertions(+) create mode 100644 src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.html create mode 100644 src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.scss create mode 100644 src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.spec.ts create mode 100644 src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.ts diff --git a/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.html b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.html new file mode 100644 index 0000000..5a8cd4b --- /dev/null +++ b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.html @@ -0,0 +1 @@ +<p>reply-to-comments-page works!</p> diff --git a/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.scss b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.spec.ts b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.spec.ts new file mode 100644 index 0000000..e0572fa --- /dev/null +++ b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ReplyToCommentsPageComponent } from './reply-to-comments-page.component'; + +describe('ReplyToCommentsPageComponent', () => { + let component: ReplyToCommentsPageComponent; + let fixture: ComponentFixture<ReplyToCommentsPageComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [ReplyToCommentsPageComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(ReplyToCommentsPageComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.ts b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.ts new file mode 100644 index 0000000..0dbf244 --- /dev/null +++ b/src/app/shared/components/reply-to-comments-page/reply-to-comments-page.component.ts @@ -0,0 +1,13 @@ +import { Component } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +@Component({ + selector: 'gp-reply-to-comments-page', + standalone: true, + imports: [CommonModule], + templateUrl: './reply-to-comments-page.component.html', + styleUrl: './reply-to-comments-page.component.scss' +}) +export class ReplyToCommentsPageComponent { + +} -- GitLab