diff options
Diffstat (limited to 'client/index.js')
-rw-r--r-- | client/index.js | 5 |
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); |