redux for, code example

Example 1: react redux

# If you use npm: npm install react-redux # Or if you use Yarn: yarn add react-redux

Example 2: Redux

npm install redux // adding redux to the project
// creating types 
export const SET_USER = 'SET_USER'
//creating actions 
export const setUser = user => {
  return {
    type : SET_USER,
    payload : {
      currentUser : user
    }
  }
// creating reducers 
  const user_reducer = (state=intialState,action)=>{
    switch(action.type){
      case SET_USER :
        return {
          currentUser : action.payload.currentUser
        }
    }

Tags:

Misc Example