mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-06-05 06:58:38 +03: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,
|
|
};
|
|
}
|