summaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorSten <stenmarsh938@gmail.com>2017-04-21 18:47:04 +0300
committerSten <stenmarsh938@gmail.com>2017-04-21 18:47:04 +0300
commit7b1e4c1749c599a154616b0df8ccc252be5f8739 (patch)
treee986bb13a6299d894953f44d72fb5f1454a48f75 /src/index.js
downloadreact-gantt-demo-7b1e4c1749c599a154616b0df8ccc252be5f8739.zip
react-gantt-demo-7b1e4c1749c599a154616b0df8ccc252be5f8739.tar.gz
react-gantt-demo-7b1e4c1749c599a154616b0df8ccc252be5f8739.tar.bz2
Initial load.
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
new file mode 100644
index 0000000..54c5ef1
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,9 @@
+import React from 'react';
+import ReactDOM from 'react-dom';
+import App from './App';
+import './index.css';
+
+ReactDOM.render(
+ <App />,
+ document.getElementById('root')
+);