style: Run prettier
This commit is contained in:
parent
3a2b92b3ff
commit
22086a88fa
2 changed files with 4 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
@if (isLoggedIn) {
|
||||
<button routerLink="/home">Zur Homepage</button>
|
||||
<button routerLink="/home">Zur Homepage</button>
|
||||
} @else {
|
||||
<button (click)="login()">Einloggen</button>
|
||||
<button (click)="login()">Einloggen</button>
|
||||
}
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
import { Component, inject } from '@angular/core';
|
||||
import { KeycloakService } from 'keycloak-angular';
|
||||
import {RouterLink} from "@angular/router";
|
||||
import { RouterLink } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-landing-page',
|
||||
standalone: true,
|
||||
imports: [
|
||||
RouterLink
|
||||
],
|
||||
imports: [RouterLink],
|
||||
templateUrl: './landing-page.component.html',
|
||||
})
|
||||
export class LandingPageComponent {
|
||||
|
|
Reference in a new issue