mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 06:58:27 +03:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
import { AbstractScreen } from 'Knoin/AbstractScreen';
|
|
|
|
import { LoginAdminView } from 'View/Admin/Login';
|
|
|
|
export class LoginAdminScreen extends AbstractScreen {
|
|
constructor() {
|
|
super('login', [LoginAdminView]);
|
|
}
|
|
|
|
onShow() {
|
|
rl.setWindowTitle();
|
|
}
|
|
}
|