cannot read properties of null (reading 'scrollTop')_MUI error
troubleshooting2023. 12. 13. 00:00cannot read properties of null (reading 'scrollTop')_MUI error

//에러코드 import { Fade } from "@mui/material"; const FadeIn = ({ children, index }) => { return ( {children} ); }; . . . 코드는 다소 이상하지만...위 같은 느낌의 코드로 mui fade 를 이용해서 FadeIn 효과를 주는 컴포넌트를 만들고 있었는데 갑자기 에러가 발생했다. 도무지 해결방법을 모르겠어서 여기저기 뒤지다가 한가지 사실을 발견했다. mui Fade 컴포넌트를 사용한 커스텀 컴포넌트 FadeIn 내부에 있는 컴포넌트를 태그로 묶어주면 오류가 해결된다. //해결코드 import { Fade } from "@mui/material"; const FadeIn = ({ children, index }) => ..

728x90
반응형
image