mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-20 07:09:13 -06:00
* 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
15 lines
340 B
TypeScript
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,
|
|
};
|
|
}
|