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

14 lines
346 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2019-06-11 20:10:58 +02:00
import { selectDownloadedUris, selectIsFetchingFileList } from 'lbry-redux';
import FileListDownloaded from './view';
2017-06-06 06:21:55 +02:00
const select = state => ({
2019-06-11 20:10:58 +02:00
downloadedUris: selectDownloadedUris(state),
fetching: selectIsFetchingFileList(state),
2017-06-06 06:21:55 +02:00
});
export default connect(
select,
2019-03-28 17:53:13 +01:00
null
)(FileListDownloaded);