728x90
반응형
index.tsx 파일을 만들어 아래와 같이 했더니 function 아래 붉은줄이 그어지면 나타난 에러...
function TodoInput() {
return <></>;
}
return <></>;
}
export default 를 넣으니 사라짐.
export default function TodoInput() {
return <></>;
}
그러나 return 문 뒤 꺽쇠에 다시 붉은 줄..
'React' refers to a UMD global, but the current file is a module. Consider adding an import instead.ts(26
tsconfig.json 파일에
"jsx" : "react" 이렇게 되어 있던 것을
"jsx" : "react-jsx" 로 변경하니 해결됨
728x90
반응형
'IT > React' 카테고리의 다른 글
Type '{ children: (string | Element)[]; }' has no properties in common with type 'IntrinsicAttributes'.ts(2559) (0) | 2023.01.10 |
---|---|
Props 개념 (0) | 2023.01.10 |
JSX 구성 요소로 사용할 수 없습니다. 해당 반환 형식 'void'은(는) 유효한 JSX 요소가 아닙니다 (0) | 2023.01.09 |
'React' refers to a UMD global, but the current file is a module. Consider adding an import instead. (0) | 2023.01.09 |
확장자 : ts vs d.ts (0) | 2023.01.09 |
댓글