jonbio/components/MDXComponents.js
2021-05-20 23:57:13 +08:00

12 lines
182 B
JavaScript

import Image from 'next/image'
import CustomLink from './Link'
import Pre from './Pre'
const MDXComponents = {
Image,
a: CustomLink,
pre: Pre,
}
export default MDXComponents