import { Component } from '@angular/core';
import { AuthService } from './auth.service';
@Component({
selector: 'my-app',
template: `
Angular2 OAuth2
Social Login Demo
Logging in.. Please Wait...
`
})
export class AppComponent {
constructor(public authService: AuthService) {
}
}
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/