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