This commit is contained in:
Bernd Heidemann
2024-09-04 12:05:49 +02:00
parent 405c1552cf
commit b5031afce0
18 changed files with 136 additions and 347 deletions

View File

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