lbry-desktop/ui/js/page/fileListDownloaded/index.js
2017-05-02 19:22:44 -04:00

20 lines
458 B
JavaScript

import React from 'react'
import {
connect
} from 'react-redux'
import {
selectDownloadedContentFileInfos,
selectFetchingDownloadedContent,
} from 'selectors/content'
import FileListDownloaded from './view'
const select = (state) => ({
downloadedContent: selectDownloadedContentFileInfos(state),
fetching: selectFetchingDownloadedContent(state),
})
const perform = (dispatch) => ({
})
export default connect(select, perform)(FileListDownloaded)