반응형
Error : Render Error Minified React error #321; visit https://reactjs.org/docs/error--decoder.html?invariant=321 for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
니꼬쌤 react native 강의를 따라하다가 위와 같은 에러가 났다.
조금 찾아보니 심각한 에러는 아니었고, useEffect, useState를 쓸 때 자동완성으로 잘 안보고 잘못된 곳에서 import 했기 때문.
해결 방법은 다음과 같다.
에러가 난 코드 :
import { useEffect, useState } from "react/cjs/react.production.min";
수정한 코드 :
import { useEffect, useState } from "react";
이렇게 useEffect와 useState를 제대로 "react"에서 import해오니 정상적으로 잘 작동했다.
반응형