2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
|
|
|
import FileList from "./view";
|
2017-04-23 23:10:45 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const select = state => ({});
|
2017-04-30 23:01:43 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({});
|
2017-04-30 23:01:43 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
export default connect(select, perform)(FileList);
|