Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 550 Bytes

README.adoc

File metadata and controls

31 lines (24 loc) · 550 Bytes

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