1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

clean code

This commit is contained in:
Rokt33r
2016-05-03 15:41:11 +09:00
parent ea8e31561e
commit 10aae90ae2
15 changed files with 84 additions and 625 deletions

View File

@@ -1,5 +1,5 @@
import { Provider } from 'react-redux'
import MainPage from './MainPage'
import Main from './Main'
import store from './store'
import React from 'react'
import ReactDOM from 'react-dom'
@@ -76,7 +76,7 @@ let el = document.getElementById('content')
ReactDOM.render((
<div>
<Provider store={store}>
<MainPage/>
<Main/>
</Provider>
</div>
), el, function () {