13 lines
305 B
JavaScript
13 lines
305 B
JavaScript
import React from 'react'
|
|
import IndexConsole from '../components/index/indexConsole/indexConsole'
|
|
import { store } from '../stores/store'
|
|
import { Provider } from 'react-redux'
|
|
|
|
const IndexPage = () => (
|
|
<Provider store={ store }>
|
|
<IndexConsole />
|
|
</Provider>
|
|
)
|
|
|
|
export default IndexPage
|