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 seems adding the rec keyword in combination with @react.component will result in an infinite loop when using JSX v4
rec
@react.component
@react.component let rec make = () => { React.null }
compiles to
function make(props) { while(true) { continue ; }; } export { make , } /* No side effect */
The text was updated successfully, but these errors were encountered:
Fix support for recursive components in JSX V4.
1dd7a75
Fixes #5981
b4d70de
mununki
Successfully merging a pull request may close this issue.
It seems adding the
rec
keyword in combination with@react.component
will result in an infinite loop when using JSX v4compiles to
The text was updated successfully, but these errors were encountered: