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 0000000000000000000000000000000000000000..5a8cd4bfe9f757b12cac2ac9ccfa3d2152f9e339 --- /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 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 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 0000000000000000000000000000000000000000..e0572fa83cd342c6c4ddb01222a0e5f8c150f6d4 --- /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 0000000000000000000000000000000000000000..0dbf244762ed04ce87db58559976140a7ca075bc --- /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 { + +}