mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-26 16:26:44 +03:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
import { AbstractScreen } from 'Knoin/AbstractScreen';
|
|
|
|
import { AdminLoginView } from 'View/Admin/Login';
|
|
|
|
export class LoginAdminScreen extends AbstractScreen {
|
|
constructor() {
|
|
super('login', [AdminLoginView]);
|
|
}
|
|
|
|
onShow() {
|
|
rl.setTitle();
|
|
}
|
|
}
|