lbry-desktop/src/renderer/component/fileList/index.js

13 lines
302 B
JavaScript
Raw Normal View History

import React from 'react';
import { connect } from 'react-redux';
import FileList from './view';
2018-04-18 06:03:01 +02:00
import { selectClaimsById } from 'lbry-redux';
const select = state => ({
claimsById: selectClaimsById(state),
});
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({});
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(FileList);