본문 바로가기

react

[react] Error 'Component' is not defined no-undef

시작부터 에러가 나를 화나게 했다.

 

src\App.js
  Line 4:19:  'Component' is not defined  no-undef     

Search for the keywords to learn more about each error.

 

App.js 맨 위에

import React, {Component} from 'react';
 
를 추가해주면 된다.
 
component를 불러오는 명령이라고 생각하면 될듯하다.