summaryrefslogtreecommitdiffhomepage
path: root/app/index.js
blob: 39553123fc4045561e9e87cba3b60facf7664e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// @flow

import RX from 'reactxp';
import App from './app';

const app = new App();
const view = app.renderView();

app.connect();

RX.App.initialize(true, true);
RX.UserInterface.setMainView(view);
RX.UserInterface.useCustomScrollbars(true);