userRef.get is not a function
TypeError: userRef.get is not a function
문제점
userRef.get is not a function
TypeError: userRef.get is not a function라는 에러 발생
해결방법
import React, { useRef } from 'react';
useRef를 import로 불러오지 않아서 발생한 일인데 가끔 이런 어처구니 없는 일로 에러가 발생하고는 한다.
느낀 점
알고 있는 문제도 한 번 더 확인해야겠다.