We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support XML <!-- --> comments in JSX
<!-- -->
Currently the only way to insert comments into JSX flow is to wrap them in JS:
{/**/}
In context:
<Foo> {/* I will tell you why this component is here */} <Bar> </Bar> </Foo>
XML like comments.
<Foo> <!-- I will tell you why this component is here --> <Bar> </Bar> </Foo>
This would also allow us to quickly temporarily comment out components in the JSX flow like this:
<Foo> <!--Bar> </Bar--> </Foo>
The text was updated successfully, but these errors were encountered:
Thanks for the proposal! https://github.com/facebook/jsx would be the right place to discuss this. There is an issue on this (facebook/jsx#7) so you can voice support there.
Sorry, something went wrong.
ah you right, sorry
No branches or pull requests
Feature
Support XML
<!-- -->
comments in JSXCurrent status
Currently the only way to insert comments into JSX flow is to wrap them in JS:
{/**/}
In context:
Proposed extension
XML like comments.
This would also allow us to quickly temporarily comment out components in the JSX flow like this:
The text was updated successfully, but these errors were encountered: