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

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

render(app(), document.querySelector('#root'));