Skip to content

Instantly share code, notes, and snippets.

@jasminabasurita
Created January 29, 2018 03:27
Show Gist options
  • Save jasminabasurita/4eb79155958058397d5c77d0f6f0264f to your computer and use it in GitHub Desktop.
Save jasminabasurita/4eb79155958058397d5c77d0f6f0264f to your computer and use it in GitHub Desktop.
self.addEventListener("push", event => {
const data = event.data.json()
const { title } = data
const body = {
body: data.body,
icon: data.icon
}
event.waitUntil(self.registration.showNotification(title, body))
})
@papapmarumo
Copy link

you add it to your service worker file in your react code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment