website/mdx-components.tsx
TheClashFruit fb79913b35
All checks were successful
Deploy Website / build (push) Successful in 1m32s
feat: start creating the website
2024-04-21 14:51:22 +02:00

7 lines
163 B
TypeScript

import type { MDXComponents } from 'mdx/types';
export function useMDXComponents(components: MDXComponents): MDXComponents {
return {
...components,
};
}