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
It looks like the JSX parser breaks when it encounters curly braces inside an inline function. This is true even if the braces are commented out.
<Button onClick={(e) => this.setState({clicked: true})}> Click Me! </Button>
The text was updated successfully, but these errors were encountered:
Other examples:
<Component data={[ {id: 0, name: 'Joe'}, {id: 1, name: 'Sue'}, ]} />
// This works <Component title={`${name}`} /> // This does not <Component title={`${name}'s page`} />
Sorry, something went wrong.
05bf67d
Thanks for reporting! Should be fixed now.
No branches or pull requests
It looks like the JSX parser breaks when it encounters curly braces inside an inline function. This is true even if the braces are commented out.
Repro code:
Screenshot from test page:
The text was updated successfully, but these errors were encountered: