One-click backups for AT Protocol
1import { useMDXComponents as getThemeComponents } from "nextra-theme-docs"; // nextra-theme-blog or your custom theme
2
3// Get the default MDX components
4const themeComponents = getThemeComponents();
5
6// Merge components
7export function useMDXComponents(components) {
8 return {
9 ...themeComponents,
10 ...components,
11 };
12}