You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
moduleOuter= {
@react.component
let make =()=> {
moduleInner= {
@react.component
let make =()=><div />
}
<Inner/>
}
}
causes the error:
React: props need to be labelled arguments.
If you are working with refs be sure to wrap with React.forwardRef.
If your component doesn't have any props use () or _ instead of a name.