Initial commit

This commit is contained in:
Mathias Biilmann Christensen
2016-02-25 00:45:56 -08:00
commit c60d8ba706
19 changed files with 590 additions and 0 deletions

17
src/index.js Normal file
View File

@ -0,0 +1,17 @@
import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import configureStore from './store/configureStore';
import Routes from './routes/routes';
import 'file?name=index.html!../example/index.html';
const store = configureStore();
const el = document.createElement('div');
document.body.appendChild(el);
render((
<Provider store={store}>
<Routes/>
</Provider>
), el);