2017-04-23 18:10:45 +02:00
|
|
|
import React from 'react'
|
|
|
|
import {
|
|
|
|
connect
|
|
|
|
} from 'react-redux'
|
|
|
|
import FileList from './view'
|
|
|
|
|
2017-04-30 18:01:43 +02:00
|
|
|
const select = (state) => ({
|
|
|
|
})
|
|
|
|
|
|
|
|
const perform = (dispatch) => ({
|
|
|
|
})
|
|
|
|
|
|
|
|
export default connect(select, perform)(FileList)
|