jonbio/components/MDXComponents.tsx

17 lines
426 B
TypeScript
Raw Normal View History

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'
import TableWrapper from './TableWrapper'
2023-07-07 11:17:22 +08:00
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,
table: TableWrapper,
2023-07-07 11:17:22 +08:00
BlogNewsletterForm,
}