React
[React] 오류 해결 : 오류 'JSX.IntrinsicElements' 형식에 'div' 속성이 없습니다.ts(2339)
밍띠이
2024. 4. 25. 21:48
반응형
https://github.com/vitejs/vite/issues/14011
Property 'div' does not exist on type 'JSX.IntrinsicElements'. · Issue #14011 · vitejs/vite
Describe the bug This problem will appear when I use vite build a react-ts project. When I write some HTML element in JSX, IDE will always prompt Property '...' does not exist on type 'JSX.Intrinsi...
github.com
VIte 협업 시 가끔 div 속성이 없다는 에러가 나는데
해결방법이 간단하다..!
1. 종속성 재설치
npm i
혹은 모듈 폴더를 날리고 다시 설치하면 해결가능하다.
반응형