UNPKG

lachie-ga4

Version:

React Google Analytics 4 (that allows gtag URL to be customised)

15 lines (12 loc) 313 B
const gtag = (...args) => { if (typeof window !== "undefined") { if (typeof window.gtag === "undefined") { window.dataLayer = window.dataLayer || []; window.gtag = function gtag() { window.dataLayer.push(arguments); }; } window.gtag(...args); } }; export default gtag;