({ content }: { content: string })
| 9 | import { CodeBlock } from "./code-block/code-block" |
| 10 | |
| 11 | export const MDXWrapper = ({ content }: { content: string }) => ( |
| 12 | <MDXContent |
| 13 | code={content} |
| 14 | components={{ |
| 15 | code: InlineCode, |
| 16 | pre: CodeBlock, |
| 17 | ol: OrderedList, |
| 18 | li: ListItem, |
| 19 | strong: Strong, |
| 20 | a: Anchor, |
| 21 | InfoAlert, |
| 22 | WarningAlert, |
| 23 | // You can add any custom component here or override existing ones by following the MDX documentation: https://mdxjs.com/table-of-components/#components |
| 24 | }} |
| 25 | /> |
| 26 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…