({
content
}: {
content?: MDXRemoteSerializeResult<
Record<string, unknown>,
Record<string, unknown>
>;
})
| 11 | ); |
| 12 | |
| 13 | export default function Content({ |
| 14 | content |
| 15 | }: { |
| 16 | content?: MDXRemoteSerializeResult< |
| 17 | Record<string, unknown>, |
| 18 | Record<string, unknown> |
| 19 | >; |
| 20 | }) { |
| 21 | |
| 22 | |
| 23 | return ( |
| 24 | <Wrapper> |
| 25 | {content && ( |
| 26 | <MDXRemote {...content} components={MarkdownComponents()} /> |
| 27 | )} |
| 28 | </Wrapper> |
| 29 | ); |
| 30 | } |
nothing calls this directly
no test coverage detected