diff options
Diffstat (limited to 'client/index.js')
| -rw-r--r-- | client/index.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client/index.js b/client/index.js new file mode 100644 index 0000000..1a71e55 --- /dev/null +++ b/client/index.js @@ -0,0 +1,8 @@ +import React from 'react' +import ReactDOM from 'react-dom' + +import App from './app' + +ReactDOM.render( + <App />, document.querySelector('#container') +) |
