Closed lusa closed 5 years ago
@lusa I had the same problem. You need to import in the src/components/mdxComponents/index.js
file which is past to the MDXProvider's components prop in src/components/layout.js
src/components/mdxComponents/index.js:
import MyComponent from './MyComponent';
export default {
/* other components */
MyComponent
};
inside your mdx content:
<MyComponent />
That worked, thanks!
How can we import React components into mdx files? I tried a very simple example and it didn't work: