-
Notifications
You must be signed in to change notification settings - Fork 87
Open
Labels
@tu4mo
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