lbry-desktop/ui/js/page/fileListDownloaded/index.js

20 lines
458 B
JavaScript
Raw Normal View History

import React from 'react'
import {
connect
} from 'react-redux'
import {
2017-04-25 07:47:21 +02:00
selectDownloadedContentFileInfos,
selectFetchingDownloadedContent,
} from 'selectors/content'
import FileListDownloaded from './view'
const select = (state) => ({
2017-04-25 07:47:21 +02:00
downloadedContent: selectDownloadedContentFileInfos(state),
fetching: selectFetchingDownloadedContent(state),
})
const perform = (dispatch) => ({
})
export default connect(select, perform)(FileListDownloaded)