컴포넌트 렌더링 후, 화면을 최상단으로 올리고 싶을 때

Stolen Moments·2020년 5월 18일
0

https://stackoverflow.com/questions/33188994/scroll-to-the-top-of-the-page-after-render-in-react-js

div 에 tabIndex 넣고 focus() 로 삽질하다가 찾은 방법😅

useEffect(() => {
  window.scrollTo(0,0);
}, []);
profile
갈 길이 멀구만~

0개의 댓글