mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-02-06 14:42:40 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import type { MDXComponents } from "mdx/types";
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...components,
|
|
};
|
|
}
|