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