chore(core): finish installation and theming

This commit is contained in:
2025-08-21 00:28:18 +02:00
parent 613263731d
commit 854031e7e0
6 changed files with 91 additions and 2571 deletions

View File

@@ -1,2 +1 @@
<router-outlet/>
<p-button label="Test"/>

View File

@@ -1,11 +1,10 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { ThemeSwitchService } from './core/service/theme-switch.service';
import { Button } from 'primeng/button';
@Component({
selector: 'app-root',
imports: [RouterOutlet, Button],
imports: [RouterOutlet],
templateUrl: './app.html',
})
export class App {