feat(qualifikation-form): add qualification form component

This commit is contained in:
Jan Gleytenhoover 2025-01-15 14:20:59 +01:00
parent 4de394acb0
commit 61597627c6
Signed by: jank
GPG key ID: 50620ADD22CD330B
4 changed files with 36 additions and 0 deletions

View file

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

View file

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

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-qualifikation-form',
standalone: true,
imports: [],
templateUrl: './qualifikation-form.component.html',
styleUrl: './qualifikation-form.component.css'
})
export class QualifikationFormComponent {
}