mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-29 07:59:42 +01:00
17 lines
271 B
TypeScript
17 lines
271 B
TypeScript
|
import * as template from './login.component.html';
|
||
|
|
||
|
import {
|
||
|
Component,
|
||
|
OnInit,
|
||
|
} from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-login',
|
||
|
template: template,
|
||
|
})
|
||
|
export class LoginComponent implements OnInit {
|
||
|
ngOnInit() {
|
||
|
// TODO?
|
||
|
}
|
||
|
}
|