mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 06:28:28 +03:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
import { AbstractScreen } from 'Knoin/AbstractScreen';
|
|
|
|
import { LoginUserView } from 'View/User/Login';
|
|
|
|
export class LoginUserScreen extends AbstractScreen {
|
|
constructor() {
|
|
super('login', [LoginUserView]);
|
|
}
|
|
|
|
onShow() {
|
|
rl.setWindowTitle();
|
|
}
|
|
}
|