Ivan Li
de1da22508
Some checks failed
🚀 Build and deploy by ftp / 🎉 Deploy (push) Failing after 10m33s
Co-authored-by: Ivan Li <ivanli2048@gmail.com> Reviewed-on: #3
15 lines
361 B
TypeScript
15 lines
361 B
TypeScript
import TOCInline from 'pliny/ui/TOCInline'
|
|
import Pre from 'pliny/ui/Pre'
|
|
import BlogNewsletterForm from 'pliny/ui/BlogNewsletterForm'
|
|
import type { MDXComponents } from 'mdx/types'
|
|
import Image from './Image'
|
|
import CustomLink from './Link'
|
|
|
|
export const components: MDXComponents = {
|
|
Image,
|
|
TOCInline,
|
|
a: CustomLink,
|
|
pre: Pre,
|
|
BlogNewsletterForm,
|
|
}
|