Files
hatchet/frontend/docs/mdx-components.tsx
Andrei Gaspar 36afeece02 Cross-Domain Tracking and Analytics Refactoring (#2587)
* feat: Implement cross-domain tracking (docs -> app)

* fix: Eslint config path issue

* feat: Implement posthog provider

* Revert "fix: Eslint config path issue"

This reverts commit 2baf56819a.

* feat: Implement wildcard support in analytics cross domain targets
2025-12-02 11:52:15 -05:00

15 lines
340 B
TypeScript

// MDX components for Nextra 4
import { Callout, Cards, Steps, Tabs, FileTree } from "nextra/components";
export function useMDXComponents(components: Record<string, unknown>) {
return {
...components,
// Adding Nextra components so they can be used in MDX files
Callout,
Cards,
Steps,
Tabs,
FileTree,
};
}