설정 영역으로 이동하기

슬기로운 코딩생활·2022년 8월 5일
0
const focusRef = useRef();
  useEffect(() => {
    focusRef.current.scrollIntoView({ behavior: "smooth" });
  }, []);
...
return <div>
  <div ref={forcusRef}>Test</div>
  </div>

해당 페이지로 오면 최초로 한번 설정해놓은 위치로 이동하기

0개의 댓글