React Auth Reducer
import * as actionType from '../actions/AuthAction'
export const initialState = {
token: null,
userId:null,
error:null,
isLoading:false
}
const AuthReducer = (state=initialState, action)=>{
switch(action.type){
case act...
thilina.hashnode.dev1 min read