mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-29 00:11:28 +00:00
12 lines
314 B
JavaScript
12 lines
314 B
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import FileList from './view';
|
|
import { selectClaimsById } from 'redux/selectors/claims';
|
|
|
|
const select = state => ({
|
|
claimsById: selectClaimsById(state),
|
|
});
|
|
|
|
const perform = dispatch => ({});
|
|
|
|
export default connect(select, perform)(FileList);
|