jonbio/components/MDXComponents.js

10 lines
146 B
JavaScript
Raw Normal View History

2021-01-09 17:50:45 +08:00
import Image from 'next/image'
import CustomLink from './Link'
const MDXComponents = {
Image,
a: CustomLink,
}
export default MDXComponents