Skip to content

Instantly share code, notes, and snippets.

@harsh317
Created June 18, 2022 05:06
Show Gist options
  • Save harsh317/32d52a9060ed1b7638b44bffb359c8a7 to your computer and use it in GitHub Desktop.
Save harsh317/32d52a9060ed1b7638b44bffb359c8a7 to your computer and use it in GitHub Desktop.
these will be the initial state of our Auth.js reducer
import { SET_UserDetails } from "../actions/Auth";
const initialState = {
userInfo: null,
};
export default (state = initialState, action) => {
switch (action.type) {
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment