import type { GoogleEventTypes } from '../api/googleEventNames' import { sendEvent } from '../api/sendEvent' export function useSendEvent() { return ( eventName: Event, eventData: GoogleEventTypes[Event], ) => sendEvent(eventName, eventData) }