mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-29 02:51:25 +00:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import type { MDXComponents } from "mdx/types";
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...components,
|
|
};
|
|
}
|