diff options
Diffstat (limited to 'src/GoatCounter.js')
-rw-r--r-- | src/GoatCounter.js | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/GoatCounter.js b/src/GoatCounter.js index 15ec5ef..07a768a 100644 --- a/src/GoatCounter.js +++ b/src/GoatCounter.js @@ -1,26 +1,26 @@ -import React from 'react' +import React from "react"; class GoatCounter extends React.Component { - componentDidMount () { - window.counter = 'https://rcd.goatcounter.com/count'; - const script = window.document.createElement('script'); - script.async = 1; - script.src = 'https://gc.zgo.at/count.js'; - script.id = 'goatcounter'; - script.setAttribute('data-goatcounter', "https://rcd.goatcounter.com/count"); - (window.document.head || window.document.body).appendChild(script); - } + componentDidMount() { + window.counter = "https://rcd.goatcounter.com/count"; + const script = window.document.createElement("script"); + script.async = 1; + script.src = "https://gc.zgo.at/count.js"; + script.id = "goatcounter"; + script.setAttribute("data-goatcounter", "https://rcd.goatcounter.com/count"); + (window.document.head || window.document.body).appendChild(script); + } - componentWillUnmount () { - const script = window.document.getElementById('goatcounter') - if (script) { - script.parentNode.removeChild(script) + componentWillUnmount() { + const script = window.document.getElementById("goatcounter"); + if (script) { + script.parentNode.removeChild(script); + } } - } - render () { - return null - } + render() { + return null; + } } -export default GoatCounter
\ No newline at end of file +export default GoatCounter; |