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 { }