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

10 lines
215 B
JavaScript
Raw Normal View History

2017-06-06 06:21:55 +02:00
import React from 'react';
import { connect } from 'react-redux';
import FileList from './view';
2017-06-06 06:21:55 +02:00
const select = 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);