## Input ```javascript // @validateRefAccessDuringRender import {useRef} from 'react'; function Component() { const ref = useRef(null); const setRef = () => { if (ref.current !== null) { ref.current.value = ''; } }; const onClick = () => { setRef(); }; return ( <>