Add ability to add notebooks and refactor code

This commit is contained in:
Joey Payne 2016-02-24 17:38:15 -07:00
commit d30477bd9d
12 changed files with 518 additions and 97 deletions

17
index.jsx Normal file
View file

@ -0,0 +1,17 @@
import React from 'react'
import injectTapEventPlugin from "react-tap-event-plugin"
injectTapEventPlugin()
import { render } from 'react-dom'
import { Provider } from 'react-redux'
import App from './app/containers/App'
import configureStore from './app/store/configureStore'
const store = configureStore()
render(
<Provider store={store}>
<App />
</Provider>,
document.getElementById('main')
)