cdaz5 / create-store-lab-web-051517

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create Store Lab

Objectives

Use the Redux createStore() method to develop a React & Redux app.

Overview

Ok, we will be building a simple React & Redux application to add new users. Just like we saw in the createStore code along, our application will not re-render with updates to the state. However, as some passing tests will show you, that does not mean that updates to the state are not occurring. Open up the Redux Devtools to see the changes occur, which we have already hooked up for you.

Instructions

Run npm install to install the npm modules for this application. To install redux, run npm install redux react-redux --save. This gives you access to the createStore method. You can see that we have already applied the method, but with an empty function. Instead, write a reducer in the reducers/manageBand.js file. Follow the tests to build out the proper reducer.

About


Languages

Language:JavaScript 77.7%Language:HTML 18.4%Language:CSS 3.8%