UNPKG

mean-guide-frontend

Version:

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.

19 lines (14 loc) 425 B
import { Component, OnInit } from '@angular/core'; import { Post } from './posts/post.model'; import { AuthService } from './auth/auth.service'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent implements OnInit { constructor(private authService: AuthService){} ngOnInit(): void { this.authService.autoAuthUser() } }