diff options
author | Sten <stenmarsh938@gmail.com> | 2017-04-21 18:47:04 +0300 |
---|---|---|
committer | Sten <stenmarsh938@gmail.com> | 2017-04-21 18:47:04 +0300 |
commit | 7b1e4c1749c599a154616b0df8ccc252be5f8739 (patch) | |
tree | e986bb13a6299d894953f44d72fb5f1454a48f75 /src/index.js | |
download | react-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.js | 9 |
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') +); |