2023-08-16 23:55:57 +08:00
|
|
|
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';
|
2023-08-16 23:29:22 +08:00
|
|
|
|
|
|
|
export const components: MDXComponents = {
|
2022-10-07 13:55:39 +08:00
|
|
|
Image,
|
|
|
|
TOCInline,
|
|
|
|
a: CustomLink,
|
|
|
|
pre: Pre,
|
|
|
|
BlogNewsletterForm,
|
2023-08-16 23:55:57 +08:00
|
|
|
};
|