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

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