Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
280 Bytes
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"
/>
)
}