Question:
Not sure why this isn’t working. I used to have
Now I want to outsource the MDXComponents object, as it is getting too big. So I created a new file:
And then back in file 1 I do:
It doesn’t let me do this, but I am not sure why?
Answer:
When you do this:
You
set the default export to a new object that has 2 properties. You’d need to import like so:
When you do this:
You create
two named exports that you can import like so:
For this use-case
there’s also a shortcut:
If you have better answer, please add a comment about this, thank you!