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

@ -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'
})