Comments (6)
just go to the file where it is showing error and instead of importing react component using {componentName}, use import React from "react" and then use components this way React.componentName
from react.
You may not have webpack.config.js file or 'react-scripts' in package.json dependencies.
from react.
You may not have webpack.config.js file or 'react-scripts' in package.json dependencies.
I do have react-scripts version 4.0.1
from react.
Found the issue had to rebuild everything with latest packages. Fixed
from react.
Found the issue had to rebuild everything with latest packages. Fixed
The documentation says, it supports react 16+.
I have react version greater than 16
my react -scripts is 4.0.3. which version did you update the react-scripts to?
from react.
Thanks @shubham-qw ,
It's resolved by romove the {componentName} and used by React.{componentName}
from react.
Related Issues (20)
- Bug: async action transition branch not committed for 5000ms HOT 3
- Bug: useDeferredValue return value printing error
- [DevTools Bug]: shows "This page doesn't appear to be using React" for every react website on Firefox 115.0.2 HOT 13
- Bug: "Uncaught runtime error" after react-script upgrade
- Feature Request (react-hooks/exhaustive-deps): `ignoreObjectReferences` flag
- Bug: [React 18] componentWillReceiveProps causes Suspense to go into an infinite loop with React.lazy HOT 2
- [DevTools Bug]: Devtools extension build failing in windows and ubuntu HOT 1
- feature: make react more reactive (feedback for future) HOT 3
- Bug: Using Nullish Coalescing Operator(param??'123') in useState
- Bug: the type of ReactDOM.prefetchDNS does not exist. HOT 3
- Bug: performance.mark is not a function HOT 1
- #usahomesforrent HOT 1
- Bug: Multiple React.Suspense breaks if all not wrapped in <Suspense> HOT 3
- [React 16] Bug: true and false clauses being rendered simultaneously HOT 6
- Bug: [18.3.0-canary] renderToString hoists some tags to top(working in 18.2) HOT 1
- Feature: Allow creating elements using document.createElement before rendering HOT 2
- Bug: For React/Server the renderToString with Suspense in the tree is not behaving as per what documentation says. HOT 2
- Bug: `eslint-plugin-react-hooks` doesn't work inside `export default () => { ... }` HOT 2
- [DevTools Bug] Cannot add node "1" because a node with that id is already in the Store. HOT 7
- [DevTools Bug] Node "24" was removed before its children. HOT 2
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.