You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using mdx.macro, if I have the following two files:
transcluded.mdx
This is some **markdown** content.
main.mdx
import Transcluded from '../../../src/transcluded.mdx';
<Transcluded />
then I get the following warning and error in the console, and the page crashes.
Warning: </static/media/Transcluded.312f719b.mdx /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.
in /static/media/Transcluded.312f719b.mdx (at Main.mdx:18)
react-dom.development.js:7935 Uncaught (in promise) DOMException: Failed to execute 'createElement' on 'Document': The tag name provided ('/static/media/Transcluded.312f719b.mdx') is not a valid name.
The text was updated successfully, but these errors were encountered:
Using mdx.macro, if I have the following two files:
transcluded.mdx
main.mdx
then I get the following warning and error in the console, and the page crashes.
The text was updated successfully, but these errors were encountered: