summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/index.ts
blob: 815095408fc4f07e3dc300f8b7bb528116a312d2 (plain)
1
2
3
4
5
6
7
import ReactDOM from 'react-dom';

import App from './app';

const app = new App();
const container = document.getElementById('app');
ReactDOM.render(app.renderView(), container);