analytics.ts 307 B

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