Created
March 2, 2017 14:20
-
-
Save brunokrebs/b169bd7305dc09a6419116e7f35c54d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
import { AuthService } from './auth.service'; | |
@Component({ | |
selector: 'app-root', | |
templateUrl: './app.component.html', | |
styleUrls: ['./app.component.css'] | |
}) | |
export class AppComponent { | |
constructor(private authService: AuthService) { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment