Created
June 7, 2021 08:43
-
-
Save DopamineDriven/96dda4a73868535476c6510765237e14 to your computer and use it in GitHub Desktop.
event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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