2023-07-16 18:52:51 +08:00
|
|
|
import TOCInline from 'pliny/ui/TOCInline'
|
2023-07-23 22:26:15 +08:00
|
|
|
import Pre from 'pliny/ui/Pre'
|
2023-07-22 16:01:51 +08:00
|
|
|
import BlogNewsletterForm from 'pliny/ui/BlogNewsletterForm'
|
2023-07-16 18:52:51 +08:00
|
|
|
import type { MDXComponents } from 'mdx/types'
|
2023-07-07 11:17:22 +08:00
|
|
|
import Image from './Image'
|
|
|
|
import CustomLink from './Link'
|
|
|
|
|
2023-07-16 18:52:51 +08:00
|
|
|
export const components: MDXComponents = {
|
2023-07-07 11:17:22 +08:00
|
|
|
Image,
|
|
|
|
TOCInline,
|
|
|
|
a: CustomLink,
|
|
|
|
pre: Pre,
|
|
|
|
BlogNewsletterForm,
|
|
|
|
}
|