lbry-desktop/ui/js/component/fileList/index.js
2017-06-05 21:21:55 -07:00

10 lines
215 B
JavaScript

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