Skip to content

Instantly share code, notes, and snippets.

@talyssonoc
Created January 22, 2019 14:25
Show Gist options
  • Save talyssonoc/bf92e62334a64fa31b1c9bd78d2738fa to your computer and use it in GitHub Desktop.
Save talyssonoc/bf92e62334a64fa31b1c9bd78d2738fa to your computer and use it in GitHub Desktop.
import { AUTH } from './actionTypes';
export const reducer = (state, action) => {
switch(action.type) {
// ...
case AUTH.SIGN_IN_SUCCESS:
case AUTH.SIGN_IN_ERROR:
return {
...state,
showSpinner: false
};
// ...
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment