feat(qualifikation-form): add qualification form component
This commit is contained in:
parent
4de394acb0
commit
61597627c6
4 changed files with 36 additions and 0 deletions
|
@ -0,0 +1 @@
|
||||||
|
<p>qualifikation-form works!</p>
|
|
@ -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();
|
||||||
|
});
|
||||||
|
});
|
|
@ -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 {
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue