File size: 280 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export const WidgetPlausible = () => {
if (typeof window !== 'undefined' && window.env.ENABLE_PLAUSIBLE !== 'true') {
return null
}
return (
<script
defer
data-domain="beta.react-spring.dev"
src="https://plausible.io/js/plausible.js"
/>
)
}
|