Skip to content

Instantly share code, notes, and snippets.

@abustamam
Created December 15, 2017 20:02
Show Gist options
  • Save abustamam/9cf77622fbf7125a824a48af775f1833 to your computer and use it in GitHub Desktop.
Save abustamam/9cf77622fbf7125a824a48af775f1833 to your computer and use it in GitHub Desktop.
areStatesEqual: (prev, next) => {
return (
prev.users.all === next.users.all
);
}
// should be
areStatesEqual: (next, prev) => {
return (
prev.users.all === next.users.all
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment