Created
July 27, 2021 13:43
-
-
Save kylephughes/de96b4d9e868dfdf6df667212051cbad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { notificationObservable } from 'services/notificationService' | |
const Notification = () => { | |
const [notification, setNotification] = useState('') | |
useEffect(() => { | |
// called when component first mounts | |
const subscription = notificationObservable.subscribe((value) => { | |
// re-render with new value | |
setNotification(value) | |
}) | |
return () => { | |
// called when component unmounts (this is important) | |
subscription.unsubscribe() | |
} | |
}, []) | |
return <div>{notification}</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment