Hi Guys ,
This blog is about the error
'React' is not defined no-undef .
The full error log is as follows :
This is an error we face when we create a new component in react js .
The fix is quite simple .
check if you have missed the import for react , if it is missing add the following line at the top of your file .
Thanks !
This blog is about the error
'React' is not defined no-undef .
The full error log is as follows :
./src/header/Top.js
Line 3:26: 'React' is not defined no-undef
Line 9:14: 'React' must be in scope when using JSX react/react-in-jsx-scope
Search for the keywords to learn more about each error.
This is an error we face when we create a new component in react js .
The fix is quite simple .
check if you have missed the import for react , if it is missing add the following line at the top of your file .
import React from 'react';
Thanks !
No comments:
Post a Comment