Init main-page component

This commit is contained in:
2025-10-25 23:32:14 +02:00
parent 2cc4ffa0eb
commit 1a5899e2bc
5 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-main-page',
standalone: false,
templateUrl: './main-page.html',
styleUrl: './main-page.css'
})
export class MainPage {
}