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
Without the comment, the following compiles and renders fine:
x.IndexView = React.createClass displayName: "views.user.IndexView" render: () -> return ( <div className="user-indexview"> <h1>Say Hello to React.js</h1> <R.Collection collectionClass={App.models.user.Users} fetch={true}> {# this is a comment } <div className="test"> <R.CollectionStats/> </div> </R.Collection> </div> )
With the comment, I get a "SyntaxError: Unexpected end of input: unclosed CJSX_ESC"
I've also seen this error show up on the outermost component if one of the inner components has an unmatched tag.
The text was updated successfully, but these errors were encountered:
also, replacing {# this is a comment} with {### this is a comment ###} works
{# this is a comment}
{### this is a comment ###}
Sorry, something went wrong.
No branches or pull requests
Without the comment, the following compiles and renders fine:
With the comment, I get a "SyntaxError: Unexpected end of input: unclosed CJSX_ESC"
I've also seen this error show up on the outermost component if one of the inner components has an unmatched tag.
The text was updated successfully, but these errors were encountered: