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); }, []);