rsnext/examples/with-sw-precache/pages/index.js
Arunoda Susiripala a36be58124 Rewrite urls with hashes correct for static export. (#2242)
* Rewrite urls with hashes correct for static export.

* Fix some lint issues inside an example app.
2017-06-13 11:44:31 +05:30

21 lines
553 B
JavaScript

import React from 'react'
export default class extends React.PureComponent {
componentDidMount () {
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('/service-worker.js')
.then(registration => {
console.log('service worker registration successful')
})
.catch(err => {
console.warn('service worker registration failed', err.message)
})
}
}
render () {
return (
<p>Check the console for the Service Worker registration status.</p>
)
}
}