This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-frontend-ARCHIVED/src/app/app.component.ts
2024-08-26 20:19:10 +00:00

20 lines
495 B
TypeScript

import { Component, OnInit } from "@angular/core";
import { AuthService } from "./core/services/auth.service";
import { AppService } from "./core/services/app.service";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"],
})
export class AppComponent implements OnInit {
constructor(
private authService: AuthService,
private appService: AppService
) {}
ngOnInit(): void {
this.authService.readUserState();
}
}