1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

service implementations

This commit is contained in:
Kyle Spearrin
2018-01-22 23:37:36 -05:00
parent 22e19a6403
commit 0a803958e9
13 changed files with 257 additions and 3 deletions

View File

@@ -5,11 +5,17 @@ import {
OnInit,
} from '@angular/core';
import { AuthService } from 'jslib/abstractions/auth.service';
@Component({
selector: 'app-login',
template: template,
template: template
})
export class LoginComponent implements OnInit {
constructor(authService: AuthService) {
console.log(authService);
}
ngOnInit() {
// TODO?
}