next.js/test/e2e/third-parties/pages/ga.js
ga.js22 lines462 B
import React from 'react'
import { GoogleAnalytics, sendGAEvent } from '@next/third-parties/google'

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

  return (
    <div class="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