feat: add PrivacyComponent with template, styles, and tests

This commit is contained in:
itsscb 2025-03-04 23:05:56 +01:00
parent da38676847
commit 1ab2424710
4 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1 @@
<p>privacy works!</p>

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PrivacyComponent } from './privacy.component';
describe('PrivacyComponent', () => {
let component: PrivacyComponent;
let fixture: ComponentFixture<PrivacyComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PrivacyComponent]
})
.compileComponents();
fixture = TestBed.createComponent(PrivacyComponent);
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-privacy',
imports: [],
templateUrl: './privacy.component.html',
styleUrl: './privacy.component.css'
})
export class PrivacyComponent {
}