feat(mitarbeiter-erstellen): add new component files

This commit is contained in:
Jan Gleytenhoover 2025-01-15 12:57:13 +01:00
parent a0672a03a1
commit 2dc8956142
Signed by: jank
GPG key ID: 50620ADD22CD330B
4 changed files with 36 additions and 0 deletions

View file

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

View file

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