analytics.ts 285 B

123456789101112131415
  1. export const sendEvent = (
  2. action: string,
  3. label: string,
  4. value?: any,
  5. category?: string
  6. ): void => {
  7. const gtag = (window as any).gtag
  8. if (gtag) {
  9. gtag('event', action, {
  10. event_label: label,
  11. event_value: value,
  12. event_category: category,
  13. })
  14. }
  15. }