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