marketing/src/hooks/useYM.ts

9 lines
233 B
TypeScript
Raw Normal View History

2026-09-04 15:57:54 +00:00
export const reachGoal = (goalName: string) => {
// @ts-ignore
if (typeof window.yaCounter68914120 !== undefined) {
// @ts-ignore
return window.yaCounter68914120.reachGoal(goalName);
}
return null;
};