2017-04-23 11:56:50 +02:00
|
|
|
import React from 'react'
|
|
|
|
import {
|
|
|
|
connect
|
|
|
|
} from 'react-redux'
|
2017-04-25 07:47:21 +02:00
|
|
|
import {
|
|
|
|
doNavigate,
|
|
|
|
} from 'actions/app'
|
2017-04-23 11:56:50 +02:00
|
|
|
import FileTileStream from './view'
|
|
|
|
|
|
|
|
const select = (state) => ({
|
|
|
|
})
|
|
|
|
|
|
|
|
const perform = (dispatch) => ({
|
2017-04-25 07:47:21 +02:00
|
|
|
navigate: (path) => dispatch(doNavigate(path))
|
2017-04-23 11:56:50 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
export default connect(select, perform)(FileTileStream)
|