mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-03 17:09:58 -06:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import * as mdxComponents from "@/components/mdx";
|
|
import { type MDXComponents } from "mdx/types";
|
|
|
|
export const useMDXComponents = (components: MDXComponents) => {
|
|
return {
|
|
...components,
|
|
...mdxComponents,
|
|
};
|
|
};
|