dev env setup

This commit is contained in:
tw-blue
2025-12-06 21:27:29 +01:00
parent 987a380758
commit bc9f0f9f3b
38 changed files with 5953 additions and 733 deletions
+3 -6
View File
@@ -1,6 +1,7 @@
import { Component, signal } from '@angular/core';
import { Component, inject, signal } from '@angular/core';
import { MatButtonModule } from '@angular/material/button';
import { RouterModule, RouterOutlet } from '@angular/router';
import { Authentication } from './services/authentication';
@Component({
selector: 'app-root',
@@ -9,10 +10,6 @@ import { RouterModule, RouterOutlet } from '@angular/router';
styleUrl: './app.scss',
})
export class App {
protected loggedIn = signal(false);
protected readonly title = signal('frontend');
protected onLogOut() {
this.loggedIn.set(false);
}
protected readonly auth = inject(Authentication);
}