5
Sự khác biệt giữa `useRef` và` createRef` là gì?
Tôi đã xem qua tài liệu hooks khi tôi tình cờ gặp useRef. Nhìn vào ví dụ của họ… function TextInputWithFocusButton() { const inputEl = useRef(null); const onButtonClick = () => { // `current` points to the mounted text input element inputEl.current.focus(); }; return ( <> <input ref={inputEl} type="text" /> …