summaryrefslogtreecommitdiff
path: root/animism-align/frontend/site/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-11-16 17:03:07 +0100
committerJules Laplace <julescarbon@gmail.com>2020-11-16 17:03:07 +0100
commit92881093ae19e4d76193447c187028aee5cbe4c7 (patch)
tree8e3b4baa4ea790b5e9b30e2fed6ed4f1b871cc5c /animism-align/frontend/site/index.js
parent77489cf313dd47122b9be80f6d49caf513a9e03c (diff)
getting the viewer-only version of the site working. flask command to run test server
Diffstat (limited to 'animism-align/frontend/site/index.js')
-rw-r--r--animism-align/frontend/site/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/animism-align/frontend/site/index.js b/animism-align/frontend/site/index.js
index 448d38d..7d47bd0 100644
--- a/animism-align/frontend/site/index.js
+++ b/animism-align/frontend/site/index.js
@@ -7,7 +7,7 @@ import '../app/common/form.css'
import { store } from './store'
-import Viewer from 'app/views/viewer/viewer.container'
+import App from './app'
const container = document.createElement('div')
container.classList.add('container')
@@ -15,6 +15,6 @@ document.body.appendChild(container)
ReactDOM.render(
<Provider store={store}>
- <Viewer />
+ <App />
</Provider>, container
)