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