Skip to content

Instantly share code, notes, and snippets.

@talyssonoc
Created January 22, 2019 14:24
Show Gist options
  • Save talyssonoc/972cc7cc84b931ed734cdb21af37b31b to your computer and use it in GitHub Desktop.
Save talyssonoc/972cc7cc84b931ed734cdb21af37b31b 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:
return {
...state,
user: action.user
};
// ...
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment