Skip to content

Instantly share code, notes, and snippets.

@chentsulin
Last active November 5, 2018 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chentsulin/50a2d96f57bec9669e002b996fffbd84 to your computer and use it in GitHub Desktop.
Save chentsulin/50a2d96f57bec9669e002b996fffbd84 to your computer and use it in GitHub Desktop.
hooks-useEffect
const App = ({ userId }) => {
useEffect(() => {
subscribe(userId);
return () => {
unsubscribe(userId);
};
}, [userId]);
// ...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment