Skip to content
Snippets Groups Projects
Commit efac52a2 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add reply to comments page component

parent d2b14ea5
No related branches found
No related tags found
No related merge requests found
<p>reply-to-comments-page works!</p>
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();
});
});
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 {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment