aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/index.tsx
blob: 99658b184398c1c66bef17b1aed86f089f162f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from 'react';
import { render } from 'react-dom';
import { App } from './app';

const app = () => (
  <App />
);

render(app(), document.getElementById('root'));