({ code }: MdxProps)
| 151 | } |
| 152 | |
| 153 | export function Mdx({ code }: MdxProps) { |
| 154 | const Component = useMDXComponent(code) |
| 155 | |
| 156 | return ( |
| 157 | <div className="mdx"> |
| 158 | <Component components={components} /> |
| 159 | </div> |
| 160 | ) |
| 161 | } |
nothing calls this directly
no outgoing calls
no test coverage detected