import { useContext } from "react"; import { AnalyticsContext } from "./context"; export function useAnalytics() { const result = useContext(AnalyticsContext); if (!result) throw new Error("Context used outside of its Provider!"); return result; }