mirror of
https://github.com/cupcakearmy/memoir.git
synced 2025-09-07 08:20:40 +00:00
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
import { useMDXComponents as getThemeComponents } from "nextra-theme-docs"; // nextra-theme-blog or your custom theme
|
|
|
|
// Get the default MDX components
|
|
const themeComponents = getThemeComponents();
|
|
|
|
// Merge components
|
|
export function useMDXComponents(components = {}) {
|
|
return {
|
|
...themeComponents,
|
|
...components,
|
|
};
|
|
}
|