Custom components with vtex pixel-manager

We currently send information to GA this way

import { usePixel } from 'vtex.pixel-manager/PixelContext'

const Example: React.FunctionComponent = () => {
      const { push } = usePixel()

      push({
        event: 'generic',
        category: 'Vitrine',
        action: `Click_produto`,
        label: 'teste'
      })
}

Is there an example of how to implement this for GA4?

Hey Gabriel, have you already taken a look at this GA4 documentation Setting up Google Tag Manager to check if the way the tags are set up wouldn’t have the event you’re trying to capture? There’s a sample container in step 1 that I think will help you out!