mirror of
https://github.com/simstudioai/sim.git
synced 2026-02-19 02:34:37 -05:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import defaultMdxComponents from 'fumadocs-ui/mdx'
|
|
import { ThemeImage } from './ui/theme-image'
|
|
|
|
// Extend the default MDX components with our custom components
|
|
const mdxComponents = {
|
|
...defaultMdxComponents,
|
|
ThemeImage
|
|
}
|
|
|
|
export default mdxComponents
|