14 lines
404 B
TypeScript
Executable file
14 lines
404 B
TypeScript
Executable file
/**
|
|
* Analytics Providers
|
|
*
|
|
* Export React context providers for analytics.
|
|
*/
|
|
|
|
export { AnalyticsProvider, useAnalytics } from './analytics-provider';
|
|
export { MockDataProvider, useMockData, mockData, createMockQuery } from './MockDataProvider';
|
|
|
|
// Re-export the props interface
|
|
export interface AnalyticsProviderProps {
|
|
config: import('../types').AnalyticsConfig;
|
|
children: React.ReactNode;
|
|
}
|