feat: add TermsOfServiceComponent with template, styles, and tests

This commit is contained in:
itsscb 2025-03-04 23:06:10 +01:00
parent 1ab2424710
commit 37b8827007
4 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1 @@
<p>terms-of-service works!</p>

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TermsOfServiceComponent } from './terms-of-service.component';
describe('TermsOfServiceComponent', () => {
let component: TermsOfServiceComponent;
let fixture: ComponentFixture<TermsOfServiceComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TermsOfServiceComponent]
})
.compileComponents();
fixture = TestBed.createComponent(TermsOfServiceComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-terms-of-service',
imports: [],
templateUrl: './terms-of-service.component.html',
styleUrl: './terms-of-service.component.css'
})
export class TermsOfServiceComponent {
}