less hacking way of pulling poe data

This commit is contained in:
2018-08-27 23:54:27 -05:00
parent 5423b81c95
commit 97acc0d4fa
34 changed files with 651 additions and 221 deletions

View File

@@ -1,6 +1,16 @@
import { Provider } from 'mobx-react';
import React from 'react';
import ReactDOM from 'react-dom';
import { Home } from './components';
import './scss/index.scss';
import { RootStore } from './stores/root.store';
import { Wrapper } from './wrapper';
ReactDOM.render(<Home />, document.getElementById('app'));
const rootStore = new RootStore();
const app = (
<Provider {...rootStore}>
<Wrapper />
</Provider>
);
ReactDOM.render(app, document.getElementById('app'));