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?