rescript-vscode icon indicating copy to clipboard operation
rescript-vscode copied to clipboard

Optional React prop with default value marked as not read

Open DZakh opened this issue 1 year ago • 0 comments

image


module El = {
  @react.component
  let make = (~foo=React.null) => {
    foo
  }
}

let a = <El />
Js.log(a)

DZakh avatar Aug 13 '24 10:08 DZakh