summaryrefslogtreecommitdiff
path: root/frontend/app/site/index.js
diff options
context:
space:
mode:
authorlens <lens@neural.garden>2021-03-23 21:10:11 +0000
committerlens <lens@neural.garden>2021-03-23 21:10:11 +0000
commitcc1d0c52e104245f9f1c0d77eb24a5a33800be38 (patch)
tree02d8483dfe47803525b926a43c582dcfbf61c5db /frontend/app/site/index.js
parent81c673f058fda04b96baae7b2302f876479bc0a9 (diff)
parent7a3ec205e001e4c071a67ecc5c375612fa72afdc (diff)
Merge branch 'master' of asdf.us:swimmer
Diffstat (limited to 'frontend/app/site/index.js')
-rw-r--r--frontend/app/site/index.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/app/site/index.js b/frontend/app/site/index.js
deleted file mode 100644
index 6f1a0a5..0000000
--- a/frontend/app/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
-)