Mr.Noohahmed kazi
Mr.Noohahmed kazi

Reputation: 61

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

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

Answers (1)

Amir
Amir

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

Related Questions