src/app/auth/auth.component.ts
selector | app-auth |
styleUrls | auth.component.scss |
templateUrl | auth.component.html |
constructor(auth: AuthService)
|
auth |
auth: |
import { Component, OnInit } from '@angular/core';
import { AuthService } from '../_services/auth.service';
@Component({
selector: 'app-auth',
templateUrl: './auth.component.html',
styleUrls: ['./auth.component.scss']
})
export class AuthComponent implements OnInit {
constructor(public auth: AuthService) { }
ngOnInit() {
}
}