next.js/examples/mdx/mdx-components.tsx
mdx-components.tsx9 lines227 B
import type { MDXComponents } from "mdx/types";

const components: MDXComponents = {};

// Allows customizing built-in components, e.g. to add styling.
export function useMDXComponents(): MDXComponents {
  return components;
}
Quest for Codev2.0.0
/
SIGN IN