Skip to content

Latest commit

 

History

History

04-redux-devtools

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

React Redux Bank

This submodule contains simple Redux Bank application

  1. add redux library

    1. reducer (state, action, action.type, action.payload)

    2. store (createStore, subscribe, dispatch)

  2. add react-redux library:

    1. connect

  3. add redux-devtools

installation

  1. install chrome extension

  2. update store

index.js
const store = createStore(
  reducer,
  window.__REDUX_DEVTOOLS_EXTENSTION__ && window.__REDUX_DEVTOOLS_EXTENSTION__()
);

build, run, deploy

yarn start
yarn build
yarn deploy