mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 14:08:42 -05:00
5c265aacb9
Co-authored-by: ShubhamPalriwala <spalriwalau@gmail.com>
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,
|
|
};
|
|
}
|