feat: add employee detail component and update navigation bar

This commit is contained in:
Jan K9f 2024-12-18 10:43:14 +01:00
parent 4b83970a8c
commit ac48357e7a
Signed by: jank
GPG key ID: B267751B8AE29EFE
8 changed files with 44 additions and 3 deletions

View file

@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { NavigationBarComponent } from '../navigation-bar/navigation-bar.component';
@Component({
selector: 'app-employee-detail',
standalone: true,
imports: [NavigationBarComponent],
templateUrl: './employee-detail.component.html',
styleUrl: './employee-detail.component.css'
})
export class EmployeeDetailComponent {
}