mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-30 16:43:37 +00:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import type { MDXComponents } from 'mdx/types';
|
|
|
|
export function useMDXComponents(components: MDXComponents): MDXComponents {
|
|
return {
|
|
...components,
|
|
};
|
|
}
|