jonbio/components/MDXComponents.tsx
Terminels 0a8e1dbbdc
Fix the table element overflow (#787)
* add terminals.run blog for example
* fix table element overflow
2023-11-21 18:17:58 +08:00

17 lines
426 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'
import TableWrapper from './TableWrapper'
export const components: MDXComponents = {
Image,
TOCInline,
a: CustomLink,
pre: Pre,
table: TableWrapper,
BlogNewsletterForm,
}