feat: add employee detail component and update navigation bar
This commit is contained in:
parent
4b83970a8c
commit
ac48357e7a
8 changed files with 44 additions and 3 deletions
|
@ -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 {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue