blob: aada6fd97b78b0b016a3cd65ac0602709eb289f2 (
plain)
1
2
3
4
5
6
7
8
9
|
import * as RX from 'reactxp';
import App from './app';
const app = new App();
const view = app.renderView();
RX.App.initialize(true, true);
RX.UserInterface.setMainView(view);
RX.UserInterface.useCustomScrollbars(true);
|