Open
Description
const A = () => <div />
const B = React.forwardRef(() => <div />)
What I get:
<Comp
a={A}
b={{
$$typeof: Symbol(react.forward_ref),
render: _c3
}}
/>
What I expect:
<Comp
a={A}
b={B}
/>
Repro: https://codesandbox.io/s/dank-cdn-ftvik?file=/src/App.js