diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-11-13 16:37:38 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-11-13 16:37:38 +0100 |
| commit | 335c7a32380420166c6754883b103f53e49ad692 (patch) | |
| tree | 9edfe0195943611e37624f9e7a13b864db7924c9 /animism-align/frontend/site/index.js | |
| parent | e9a5a0eb4b122ab83fd48f7a0f34cd56ee63bd7e (diff) | |
starting viewer standalone frontend
Diffstat (limited to 'animism-align/frontend/site/index.js')
| -rw-r--r-- | animism-align/frontend/site/index.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/animism-align/frontend/site/index.js b/animism-align/frontend/site/index.js index 6f1a0a5..838b012 100644 --- a/animism-align/frontend/site/index.js +++ b/animism-align/frontend/site/index.js @@ -2,9 +2,11 @@ import React from 'react' import ReactDOM from 'react-dom' import { Provider } from 'react-redux' -import App from './app' +import './site.css' -import { store, history } from './store' +import { store } from './store' + +import Viewer from 'app/views/viewer/viewer.container' const container = document.createElement('div') container.classList.add('container') @@ -12,6 +14,6 @@ document.body.appendChild(container) ReactDOM.render( <Provider store={store}> - <App history={history} /> + <Viewer /> </Provider>, container ) |
