insomnia/app/index.js

19 lines
460 B
JavaScript
Raw Normal View History

2016-03-16 05:49:42 +00:00
import React from 'react'
2016-03-20 04:00:40 +00:00
import {render} from 'react-dom'
import {Provider} from 'react-redux'
2016-03-16 05:49:42 +00:00
import configureStore from './stores/configureStore'
2016-03-20 04:47:43 +00:00
import AppWrapper from './containers/App'
2016-03-20 04:00:40 +00:00
2016-03-18 06:30:48 +00:00
// Global CSS
2016-03-16 05:49:42 +00:00
import './css/index.scss'
2016-03-16 23:34:25 +00:00
import './css/lib/chrome/platform_app.css'
2016-03-16 05:49:42 +00:00
import './css/lib/fontawesome/css/font-awesome.css'
const store = configureStore();
render(
2016-03-20 04:00:40 +00:00
<Provider store={store}><AppWrapper /></Provider>,
document.getElementById('root')
2016-03-16 05:49:42 +00:00
);