lbry-desktop/src/renderer/component/fileList/index.js
2017-12-21 18:08:54 -03:00

9 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);