mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
a36be58124
* Rewrite urls with hashes correct for static export. * Fix some lint issues inside an example app.
22 lines
553 B
JavaScript
22 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>
|
|
)
|
|
}
|
|
}
|