First Commit

This commit is contained in:
2025-07-12 19:54:10 +02:00
parent 4f6df6fd98
commit a58578a3c1
23 changed files with 15777 additions and 2 deletions

12
src/app/app.component.ts Normal file
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 = 'DTFluxTitrage-Client';
}