mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 21:49:21 +03:00
Code refactoring (2) (es5 -> es2015)
This commit is contained in:
parent
38a1041a73
commit
a2308e251b
23 changed files with 760 additions and 821 deletions
19
dev/Screen/User/About.jsx
Normal file
19
dev/Screen/User/About.jsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
import {AbstractScreen} from 'Knoin/AbstractScreen';
|
||||
import App from 'App/User';
|
||||
|
||||
class AboutUserScreen extends AbstractScreen
|
||||
{
|
||||
constructor()
|
||||
{
|
||||
super('about', [
|
||||
require('View/User/About')
|
||||
]);
|
||||
}
|
||||
|
||||
onShow() {
|
||||
App.setWindowTitle('RainLoop');
|
||||
}
|
||||
}
|
||||
|
||||
export {AboutUserScreen, AboutUserScreen as default};
|
||||
Loading…
Add table
Add a link
Reference in a new issue