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