Skip to content

Latest commit

 

History

History
66 lines (55 loc) · 2.63 KB

README.md

File metadata and controls

66 lines (55 loc) · 2.63 KB

Redux-training

Index

Redux with React Native

Redux training with React Native
Reference jeffgukang's react-native tutorial

Redux

  • Redux makes global Store that is located at the top of application and supplies State to all other components.
  • Store is the place where data is managed all over the country and Reducer, which is a pure function that changes data values according to Action, is defined.
npm install --save redux react-redux

redux

Status container for Javascript apps.

react-redux

It provides Provider component and connect method to make it easier to develop React + Redux.

ㄴ /app
  ㄴ /actions
     ActionTypes.js
     index.js
  ㄴ /components
     App.js 
     Counter.js
     CounterList.js
  ㄴ /containers
     CounterListContainer.js
  ㄴ /reducers
     index.js
  App.js
index.js