Add initial Angular application structure and components

This commit is contained in:
Lechner Julian
2025-07-03 16:09:24 +02:00
parent 688b9d026d
commit c15abe3e97
47 changed files with 21766 additions and 1214 deletions
+13
View File
@@ -0,0 +1,13 @@
import {Component} from '@angular/core'
import {RouterOutlet} from '@angular/router';
@Component({
selector: 'app-root',
imports: [
RouterOutlet
],
templateUrl: './app.component.html'
})
export class AppComponent {
title: string = "Angular-Portfolio-Seite";
}