next.js/test/e2e/app-dir/third-parties/app/ga/page.tsx
page.tsx24 lines480 B
'use client'

import React from 'react'
import { GoogleAnalytics, sendGAEvent } from '@next/third-parties/google'

const Page = () => {
  const onClick = () => {
    sendGAEvent({ event: 'buttonClicked', value: 'xyz' })
  }

  return (
    <div className="container">
      <GoogleAnalytics gaId="GA-XYZ" />
      <h1>GA</h1>
      <button id="ga-send" onClick={onClick}>
        Click
      </button>
      <GoogleAnalytics gaId="GA-XYZ" />
    </div>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN