summaryrefslogtreecommitdiff
path: root/frontend/site/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/site/index.js')
-rw-r--r--frontend/site/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/site/index.js b/frontend/site/index.js
deleted file mode 100644
index 6f1a0a5..0000000
--- a/frontend/site/index.js
+++ /dev/null
@@ -1,17 +0,0 @@
-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(
- <Provider store={store}>
- <App history={history} />
- </Provider>, container
-)