mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
34 lines
788 B
JavaScript
34 lines
788 B
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { connect } from 'react-redux';
|
||
|
import { bindActionCreators } from 'redux';
|
||
|
import Header from '../components/Header';
|
||
|
import MainSection from '../components/MainSection';
|
||
|
import * as TodoActions from '../actions/TodoActions';
|
||
|
|
||
|
const TodoApp = ({ todos, actions }) => (
|
||
|
<div>
|
||
|
<Header addTodo={actions.addTodo} />
|
||
|
<MainSection todos={todos} actions={actions} />
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
TodoApp.propTypes = {
|
||
|
todos: PropTypes.array.isRequired,
|
||
|
actions: PropTypes.object.isRequired
|
||
|
};
|
||
|
|
||
|
function mapState(state) {
|
||
|
return {
|
||
|
todos: state.todos
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function mapDispatch(dispatch) {
|
||
|
return {
|
||
|
actions: bindActionCreators(TodoActions, dispatch)
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default connect(mapState, mapDispatch)(TodoApp);
|