Reputation: 61
When i run react app it shows me export 'React' (imported as 'React') was not found in 'react'
. Error for all pages see image here.
Upvotes: 5
Views: 13152
Reputation: 1037
Based on the errors in the image, you are probably doing this:
import { React } from 'react';
This is wrong, because React
is not a named export, it's a default export, and you should import default exports like this:
import React from 'react';
You can read more about this here.
Upvotes: 7