update angular to v19 (#2)

Co-authored-by: Jan-Marlon Leibl <jleibl@proton.me>
Reviewed-on: #2
This commit is contained in:
2024-12-18 09:04:14 +00:00
parent 05a0b8092a
commit 3595348aee
9 changed files with 40 additions and 13376 deletions

View File

@ -4,11 +4,10 @@ import { RouterOutlet } from '@angular/router';
import {EmployeeListComponent} from "./employee-list/employee-list.component";
@Component({
selector: 'app-root',
standalone: true,
imports: [CommonModule, EmployeeListComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
selector: 'app-root',
imports: [CommonModule, EmployeeListComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'lf10StarterNew';