14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
|
import React from 'react'
|
||
|
import {
|
||
|
connect
|
||
|
} from 'react-redux'
|
||
|
import FileTile from './view'
|
||
|
|
||
|
const select = (state) => ({
|
||
|
})
|
||
|
|
||
|
const perform = (dispatch) => ({
|
||
|
})
|
||
|
|
||
|
export default connect(select, perform)(FileTile)
|