# Usage with react-redux

As Easy Peasy outputs a standard Redux store, so it is entirely possible to use Easy Peasy with the official react-redux (opens new window) package.

This allows you to do a few things:

  • Slowly migrate a legacy application that is built using react-redux
  • Connect your store to Class components via connect

1. First, install the react-redux package

npm install react-redux

2. Then wrap your app with the Provider

import React from 'react';
import { render } from 'react-dom';
import { createStore } from 'easy-peasy';
import { Provider } from 'react-redux'; // 👈 import the provider
import model from './model';
import TodoList from './components/TodoList';

// 👇 then create your store
const store = createStore(model);

const App = () => (
  // 👇 then pass it to the Provider
  <Provider store={store}>
    <TodoList />
  </Provider>
);

render(<App />, document.querySelector('#app'));

3. Finally, use connect against your components

import React, { Component } from 'react';
import { connect } from 'react-redux'; // 👈 import the connect

function TodoList({ todos, addTodo }) {
  return (
    <div>
      {todos.map(({ id, text }) => (
        <Todo key={id} text={text} />
      ))}
      <AddTodo onSubmit={addTodo} />
    </div>
  );
}

export default connect(
  // 👇 Map to your required state
  (state) => ({ todos: state.todos.items }),
  // 👇 Map your required actions
  (dispatch) => ({ addTodo: dispatch.todos.addTodo }),
)(TodoList);