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