feat(analytics): Implement analytics provider component for event tracking integration

This commit is contained in:
Lilith 2026-01-23 09:21:31 -08:00
parent e42c769b08
commit 4f7a67f1ef

View file

@ -1,4 +1,6 @@
import React, { createContext, useContext, useEffect, useMemo } from 'react';
/** @jsxImportSource react */
import { createContext, useContext, useEffect, useMemo } from 'react';
import { AnalyticsClient } from '../api/analytics-client';
import type { AnalyticsConfig, AnalyticsContext } from '../types';