Initial setup

This commit is contained in:
2025-04-02 19:18:39 +02:00
commit eb1cb1076d
35 changed files with 1488 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent {
title = 'frontend';
}