Skip to content

Instantly share code, notes, and snippets.

@JimmyLv
Created January 21, 2021 04:52
Show Gist options
  • Save JimmyLv/59482a9fc5a71c02ae8fc921321026b6 to your computer and use it in GitHub Desktop.
Save JimmyLv/59482a9fc5a71c02ae8fc921321026b6 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
function FriendStatus(props) {
// ...
useEffect(() => {
// ...
ChatAPI.subscribeToFriendStatus(props.friend.id, handleStatusChange);
return () => {
ChatAPI.unsubscribeFromFriendStatus(props.friend.id, handleStatusChange);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment