We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 */