diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-07-07 21:18:33 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-07-07 21:18:33 +0200 |
| commit | f8b61281be84a6e4e7a44be5109e688a7c56c671 (patch) | |
| tree | 43797c6b6cfa5c0f89c020f8c89e0da10f791a55 /client/containers/taskList.js | |
| parent | 3d3a7b80d34c100846c8ae130b424b63ba3c0784 (diff) | |
refactor files so list updates while processing
Diffstat (limited to 'client/containers/taskList.js')
| -rw-r--r-- | client/containers/taskList.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/client/containers/taskList.js b/client/containers/taskList.js new file mode 100644 index 0000000..f4a5a1d --- /dev/null +++ b/client/containers/taskList.js @@ -0,0 +1,15 @@ +import { connect } from 'react-redux' +// import {} from '../actions' +import TaskListView from '../components/Tasks/TaskListView.jsx' + +const mapStateToProps = (state) => ({ tasks: state.tasks }) + +const mapDispatchToProps = { +} + +const TaskList = connect( + mapStateToProps, + mapDispatchToProps +)(TaskListView) + +export default TaskList |
