From 91e8fdb99e321496c54288fe5a3db6397c768c10 Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Sat, 11 Jul 2020 00:50:00 +0200 Subject: building basic site. need to include cursors, etc --- frontend/site/index.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 frontend/site/index.js (limited to 'frontend/site/index.js') diff --git a/frontend/site/index.js b/frontend/site/index.js new file mode 100644 index 0000000..6f1a0a5 --- /dev/null +++ b/frontend/site/index.js @@ -0,0 +1,17 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import { Provider } from 'react-redux' + +import App from './app' + +import { store, history } from './store' + +const container = document.createElement('div') +container.classList.add('container') +document.body.appendChild(container) + +ReactDOM.render( + + + , container +) -- cgit v1.2.3-70-g09d2