mvp-ticket/frontend/src/app/app.component.ts

16 lines
435 B
TypeScript
Raw Normal View History

2024-05-21 21:21:33 +02:00
import { Component, inject } from '@angular/core';
2024-03-14 19:58:24 +01:00
import { RouterOutlet } from '@angular/router';
2024-05-21 21:21:33 +02:00
import { AuthService } from './shared/service';
2024-03-14 19:58:24 +01:00
@Component({
selector: 'app-root',
standalone: true,
2024-05-21 21:21:33 +02:00
providers: [AuthService],
2024-03-14 19:58:24 +01:00
imports: [RouterOutlet],
templateUrl: './app.component.html',
2024-03-14 20:32:51 +01:00
styleUrl: './app.component.scss',
2024-03-14 19:58:24 +01:00
})
2024-05-21 21:21:33 +02:00
export class AppComponent {
private readonly authService: AuthService = inject(AuthService);
}