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