summaryrefslogtreecommitdiff
path: root/client/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/index.js')
-rw-r--r--client/index.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/index.js b/client/index.js
new file mode 100644
index 0000000..bab4dcd
--- /dev/null
+++ b/client/index.js
@@ -0,0 +1,5 @@
+import ReactDOM from 'react-dom';
+import App from './app';
+
+const app = document.getElementById('app');
+ReactDOM.render(<App />, app);