lbry-desktop/src/renderer/component/fileList/index.js
2018-04-18 00:13:00 -04:00

13 lines
302 B
JavaScript

import React from 'react';
import { connect } from 'react-redux';
import FileList from './view';
import { selectClaimsById } from 'lbry-redux';
const select = state => ({
claimsById: selectClaimsById(state),
});
const perform = dispatch => ({});
export default connect(select, perform)(FileList);