Skip to content

Instantly share code, notes, and snippets.

@x-labz
Created December 9, 2020 13:55
Show Gist options
  • Save x-labz/c1ea9a92256f8853745844b361781384 to your computer and use it in GitHub Desktop.
Save x-labz/c1ea9a92256f8853745844b361781384 to your computer and use it in GitHub Desktop.
const collectUserEvent = (state = initialState, action, wholeState) => {
const { payload: { userEvent } } = action;
cosnst sessionID = wholeState.users[userEvent.userID]?.sessionID
return [...state, { ...userEvent, sessionID } ]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment