[TS] ref 타입 지정하기 (object is possibly null)

GY·2022년 2월 7일
0

Typescript

목록 보기
3/14
post-thumbnail

error: Object is possibly 'null'
에러가 떠서, 해당 값이 있을 경우의 조건을 추가해주었다.

function Sidebar({ isSideBarOpened }: TSideBar) {
  const sideBarRef = useRef<HTMLInputElement>(null);
  useEffect(() => {
    if (isSideBarOpened && sideBarRef.current) {
      sideBarRef.current.style.transform = 'translateX(30px)';
    } else {
      //
    }
  }, [isSideBarOpened]);

Reference

https://darrengwon.tistory.com/865

profile
Why?에서 시작해 How를 찾는 과정을 좋아합니다. 그 고민과 성장의 과정을 꾸준히 기록하고자 합니다.

0개의 댓글