Intro ์๋ ํ์ธ์. react hook useSelector ๋ฅผ ์ฌ์ฉํ๋ ๋์ค ์๋์ ์๋ฌ๊ฐ ๋ฐ์ํ์ต๋๋ค. React Hook "useSelector" cannot be called inside a callback function YourComponent() { useEffect(() => { useSelector((state: RootState) => state.code[SOME_DATA]) }, []) } Why? react hook์ ์ฌ์ฉํ ๋๋ ์ค์ํ 2๊ฐ์ง ๊ท์น์ด ์์ต๋๋ค. 1๏ธโฃ Only Call Hooks at the Top Level ๋ฃจํ ์กฐ๊ฑด ๋๋ ์ค์ฒฉ๋ ํจ์ ๋ด์์ Hooks๋ฅผ ํธ์ถํ ์ ์์ต๋๋ค. ํญ์ React ํจ์์ Top Level์์ Hooks๋ฅผ ์ฌ์ฉํด์ผ ํฉ๋๋ค. ์ด ๊ท์น์..