jonbio/components/MDXComponents.js

12 lines
182 B
JavaScript
Raw Normal View History

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