[참고]프로젝트 기본 설정React, Styled-component, TypeScript, Yarn, VercelCannot find module 'react' or its corresponding type declarations.ts(2307)[문제원인] TypeScript가 'react' 모듈을 찾을 수 없거나 해당 모듈에 대한 타입 선언을 찾을 수 없음[해결방법] React DOM 및 패키지 설치(React DOM 사용시 적용 가능)yarn install --save-dev@types/react An import path can only end with a '.tsx' extension when 'allowImportingTsExtensions' is enabled.ts(5097)[문제 원인] Ty..