Git에서 pull해온 리액트 파일이
./src/Components/파일명.js
Module not found: Can't resolve './node_modules/react' in '경로'
라는 에러 문구와 함께 열리지 않을 때가 있다
그러면 해당 js 파일에 가서
import React, { Component } from './node_modules/react';
를
import React, { Component } from 'react';
로 수정하면 된다.
'■ 프로그래밍 > React' 카테고리의 다른 글
React Lifecycle(생명 주기) (0) | 2020.04.12 |
---|---|
State (0) | 2020.04.12 |
Props (0) | 2020.04.12 |
Component(컴포넌트) (0) | 2020.04.11 |
JSX (0) | 2020.04.10 |