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.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/uidev/src/index.tsx b/uidev/src/index.tsx
index c996d9f69..0f2003d24 100644
--- a/uidev/src/index.tsx
+++ b/uidev/src/index.tsx
@@ -1,8 +1,6 @@
1import { render } from 'react-dom'; 1import { render } from 'react-dom';
2import { App } from './app'; 2import { App } from './app';
3 3
4const app = () => ( 4const app = () => <App />;
5 <App />
6);
7 5
8render(app(), document.querySelector('#root')); 6render(app(), document.querySelector('#root'));