mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 18:07:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			878 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			878 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import React, { Component, PropTypes } from 'react';
 | 
						|
import { bindActionCreators } from 'redux';
 | 
						|
import { connect } from 'react-redux';
 | 
						|
import Header from '../components/Header';
 | 
						|
import MainSection from '../components/MainSection';
 | 
						|
import * as TodoActions from '../actions/todos';
 | 
						|
 | 
						|
class App extends Component {
 | 
						|
  render() {
 | 
						|
    const { todos, actions } = this.props;
 | 
						|
    return (
 | 
						|
      <div>
 | 
						|
        <Header addTodo={actions.addTodo} />
 | 
						|
        <MainSection todos={todos} actions={actions} />
 | 
						|
      </div>
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
App.propTypes = {
 | 
						|
  todos: PropTypes.array.isRequired,
 | 
						|
  actions: PropTypes.object.isRequired,
 | 
						|
};
 | 
						|
 | 
						|
function mapStateToProps(state) {
 | 
						|
  return {
 | 
						|
    todos: state.todos,
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
function mapDispatchToProps(dispatch) {
 | 
						|
  return {
 | 
						|
    actions: bindActionCreators(TodoActions, dispatch),
 | 
						|
  };
 | 
						|
}
 | 
						|
 | 
						|
export default connect(mapStateToProps, mapDispatchToProps)(App);
 |