[넘블] 다른 색깔 찾기 게임 제작 챌린지 결과물 http://numble-color-game.kangjiin.com/ GitHub https://github.com/kang-jiin/numble-color-game 주요코드 타이머 useEffect(() => { if (time { if (time > 0) { setTime(time - 1); } }, 1000); return () => clearTimeout(timer); }, [time]); 정답과 오답 색 차이 const randomColors = useCallback(() => { let baseR = Math.floor(Math.random() * 256); let baseG = Math.floor(Math.random() * 256); let..