Add ability to add notebooks and refactor code
This commit is contained in:
parent
03238ad179
commit
d30477bd9d
12 changed files with 518 additions and 97 deletions
17
index.jsx
Normal file
17
index.jsx
Normal 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')
|
||||
)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue