Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Fix "export 'React' (imported as 'React') was not found in 'react'" Error in React js

Tags:

reactjs

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.

like image 758
Mr.Noohahmed kazi Avatar asked Jul 31 '26 23:07

Mr.Noohahmed kazi


1 Answers

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.

like image 108
Amir Avatar answered Aug 02 '26 16:08

Amir



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!