Skip to content

Instantly share code, notes, and snippets.

@kylephughes
Created July 27, 2021 13:43
Show Gist options
  • Save kylephughes/de96b4d9e868dfdf6df667212051cbad to your computer and use it in GitHub Desktop.
Save kylephughes/de96b4d9e868dfdf6df667212051cbad to your computer and use it in GitHub Desktop.
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