Typescript: Component cannot be used as a JSX component. Its return type 'Element[]' is not a valid JSX element next 버전이랑 typescript 버전이 안맞아서 발생하는 문제 build 파일, node_modules, .d.ts 타입 정의 파일 삭제하기, npm 캐시 삭제하기. (npm cache clean 명령어 사용) 그리고 다시 재설치하였더니 해당 오류는 없어졌다.. error일지 2023.06.01
[Next] Warning: Prop `style` did not match. Server: "null" Client: "color:" Link Component에 조건부 인라인 스타일링(color 값 주기)을 해줬을 때 나타는 오류이다. Server 측에서 초기 렌더링 될 때 color 속성이 없어서 (null로 설정되어있기 때문) Client 측과 일치하지 않아 발생하는 문제. → Hydration Error 라고 console에서 알려주고 있다. https://nextjs.org/docs/messages/react-hydration-error react-hydration-error | Next.js Text content does not match server-rendered HTML While rendering your application, there was a difference between the React tree tha.. error일지 2023.05.05