10 lines
146 B
JavaScript
10 lines
146 B
JavaScript
import Image from 'next/image'
|
|
import CustomLink from './Link'
|
|
|
|
const MDXComponents = {
|
|
Image,
|
|
a: CustomLink,
|
|
}
|
|
|
|
export default MDXComponents
|