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

12 lines
194 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import FileList from './view';
2019-06-11 20:10:58 +02:00
const select = state => ({});
2019-06-11 20:10:58 +02:00
const perform = dispatch => ({});
2018-10-23 04:02:19 +02:00
export default connect(
select,
perform
)(FileList);