You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/index.js

18 lines
445 B

/* @flow */
import React from 'react';
import { render } from 'react-dom';
import baseStyles from 'support/styles';
import App from 'views/index';
const root: ?HTMLElement = document.getElementById('trezor-wallet-root');
if (root) {
baseStyles();
render(<App />, root);
}
window.onbeforeunload = () => {
// $FlowIssue: render empty component
render(null, root);
};
// Application life cycle starts in services/WalletService.js