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