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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With