aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/src/index.tsx')
-rw-r--r--uidev/src/index.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/uidev/src/index.tsx b/uidev/src/index.tsx
new file mode 100644
index 000000000..99658b184
--- /dev/null
+++ b/uidev/src/index.tsx
@@ -0,0 +1,9 @@
1import React from 'react';
2import { render } from 'react-dom';
3import { App } from './app';
4
5const app = () => (
6 <App />
7);
8
9render(app(), document.getElementById('root'));