React에서 Typescript 에러잡기

Park Taejoon·2022년 7월 19일
0

트러블슈팅

목록 보기
4/4

문제

TS2686: 'React' refers to a UMD global, but the current file is a module. Consider adding an import instead

해결 방법

// tsconfig.json
{
  "compilerOptions": {
    ...
    "jsx": "react-jsx"
    ...
  },
}

0개의 댓글