mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-09 03:09:33 -06:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import * as mdxComponents from "@/components/docs/mdx";
|
|
import { type MDXComponents } from "mdx/types";
|
|
|
|
export function useMDXComponents(components: MDXComponents) {
|
|
return {
|
|
...components,
|
|
...mdxComponents,
|
|
};
|
|
}
|