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
|
@ -1,11 +1,12 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import { NavigationBarComponent } from './components/navigation-bar/navigation-bar.component';
|
||||
import { EmployeeDetailComponent } from './components/employee-detail/employee-detail.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
standalone: true,
|
||||
imports: [RouterOutlet, NavigationBarComponent],
|
||||
imports: [RouterOutlet, NavigationBarComponent, EmployeeDetailComponent],
|
||||
templateUrl: './app.component.html',
|
||||
styleUrl: './app.component.css'
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue