agent / dev-docs /src /theme /MDXComponents.js
Leon4gr45's picture
Replace agent-zero with Excalidraw (Docker Space)
ddfb4ad verified
Raw
History Blame Contribute Delete
382 Bytes
// Import the original mapper
import Highlight from "@site/src/components/Highlight";
import MDXComponents from "@theme-original/MDXComponents";
export default {
// Re-use the default mapping
...MDXComponents,
// Map the "highlight" tag to our <Highlight /> component!
// `Highlight` will receive all props that were passed to `highlight` in MDX
highlight: Highlight,
};