arrow_backBACK TO DRILLS
Blue Beltuseref
conditional ref forwarding
A component forwards a ref to <input ref={ref} />, but the input is rendered conditionally with
REACT_MODULE // 0x42
{showInput && <input ref={ref} />}What happens when showInput becomes false?