mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 06:18:19 +01:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import type { MDXComponents } from "mdx/types";
|
|
|
|
import * as mdxComponents from "./components/mdx";
|
|
|
|
export function useMDXComponents(components: MDXComponents) {
|
|
return {
|
|
...components,
|
|
...mdxComponents,
|
|
};
|
|
}
|