Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Created June 7, 2021 08:43
Show Gist options
  • Select an option

  • Save DopamineDriven/96dda4a73868535476c6510765237e14 to your computer and use it in GitHub Desktop.

Select an option

Save DopamineDriven/96dda4a73868535476c6510765237e14 to your computer and use it in GitHub Desktop.
event
export const event = (
action: Gtag.EventNames,
{ event_category, event_label, value }: Gtag.EventParams
) => {
window.gtag('event', action, {
event_category,
event_label,
value
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment