Files: 9642105bd047078b96b5d68874a78e1c620077e2 / app / todos / containers / index.js
624 bytesRaw
1 | import React from 'react' |
2 | import { connect } from 'react-redux' |
3 | import { map } from 'lodash' |
4 | |
5 | import actions from '../actions' |
6 | import TodoList from '../components/todo-list' |
7 | import Todo from '../components/todo' |
8 | |
9 | class TodosContainer extends React.Component { |
10 | static fetchData = (getState, dispatch, location, params) => { |
11 | return dispatch(actions.find()) |
12 | } |
13 | |
14 | render () { |
15 | return <TodoList> |
16 | { |
17 | map(this.props.todos, todo => { |
18 | return <Todo todo={todo} /> |
19 | }) |
20 | } |
21 | </TodoList> |
22 | } |
23 | } |
24 | |
25 | export default connect( |
26 | (state) => ({ |
27 | todos: state.todos.records |
28 | }) |
29 | )(TodosContainer) |
30 |
Built with git-ssb-web