This commit is contained in:
Bastian Wagner
2026-08-17 12:49:36 +02:00
commit feff7c717e
44 changed files with 23883 additions and 0 deletions

12
frontend/src/app/app.ts Normal file
View File

@@ -0,0 +1,12 @@
import { Component, signal } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.html',
styleUrl: './app.scss'
})
export class App {
protected readonly title = signal('frontend');
}