This commit is contained in:
2026-04-21 10:30:57 +02:00
parent a594f125e1
commit f96df49b00
22 changed files with 233 additions and 342 deletions
+16
View File
@@ -0,0 +1,16 @@
import { Component, OnInit } from '@angular/core';
import {RouterOutlet} from "@angular/router";
@Component({
selector: 'app-main',
imports: [RouterOutlet],
templateUrl: './main.component.html',
styleUrls: ['./main.component.scss'],
})
export class Main implements OnInit {
constructor() { }
ngOnInit() {}
}