React.createElement: type is invalid -- expected a string

ReactjsReact RouterReact Hot-Loader

Reactjs Problem Overview


Trying to get react-router (v4.0.0) and react-hot-loader (3.0.0-beta.6) to play nicely, but getting the following error in the browser console:

Warning: React.createElement: type is invalid -- expected a string
(for built-in components) or a class/function (for composite
components) but got: undefined. You likely forgot to export your
component from the file it's defined in.

index.js:

import React from 'react';
import ReactDom from 'react-dom';
import routes from './routes.js';
require('jquery');
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap/dist/js/bootstrap.min.js';
import './css/main.css';

const renderApp = (appRoutes) => {
    ReactDom.render(appRoutes, document.getElementById('root'));
};

renderApp( routes() );

routes.js:

import React from 'react';
import { AppContainer } from 'react-hot-loader';
import { Router, Route, browserHistory, IndexRoute } from 'react-router';
import store from './store/store.js';
import { Provider } from 'react-redux';
import App from './containers/App.jsx';
import Products from './containers/shop/Products.jsx';
import Basket from './containers/shop/Basket.jsx';

const routes = () => (

    <AppContainer>
        <Provider store={store}>
            <Router history={browserHistory}>
                <Route path="/" component={App}>
                    <IndexRoute component={Products} />
                    <Route path="/basket" component={Basket} />
                </Route>
            </Router>
        </Provider>
    </AppContainer>

);

export default routes;

Reactjs Solutions


Solution 1 - Reactjs

Most of the time this is due to an incorrect export/import.

Common error:

// File: LeComponent.js
export class LeComponent extends React.Component { ... }

// File: App.js
import LeComponent from './LeComponent';

Possible option:

// File: LeComponent.js 
export default class LeComponent extends React.Component { ... }

// File: App.js
import LeComponent from './LeComponent';

There are a few ways it could be wrong, but that error is because of an import/export mismatch 60% of the time, everytime.

Edit

Typically you should get a stacktrace that indicates an approximate location of where the failure occurs. This generally follows straight after the message you have in your original question.

If it doesn't show, it might be worth investigating why (it might be a build setting that you're missing). Regardless, if it doesn't show, the only course of action is narrowing down where the export/import is failing.

Sadly, the only way to do it, without a stacktrace is to manually remove each module/submodule until you don't get the error anymore, then work your way back up the stack.

Edit 2

Via comments, it was indeed an import issue, specifically importing a module that didn't exist

Solution 2 - Reactjs

I was getting this error as well.

I was using:

import BrowserRouter from 'react-router-dom';

Fix was doing this, instead:

import { BrowserRouter } from 'react-router-dom';

Solution 3 - Reactjs

Try this

npm i react-router-dom@next

in your App.js

import { BrowserRouter as Router, Route } from 'react-router-dom'

const Home = () => <h1>Home</h1>

const App = () =>(
  <Router>
    <Route path="/" component={Home} />
  </Router>
)

export default App;

Solution 4 - Reactjs

Array of components

A common way to get this error is using an array of components, with a positional index used to select the component to render from the array. I saw a code like this many times:

const checkoutSteps = [Address, Shipment, Payment]

export const Checkout = ({step}) => {

  const ToRender = checkoutSteps[step]

  return (
    <ToRender />
  )
}

This is not necessary bad code, but if you call it with a wrong index (eg -1, or 3 in this case), the ToRender component will be undefined, throwing the React.createElement: type is invalid... error:

<Checkout step={0} /> // <Address />
<Checkout step={1} /> // <Shipment />
<Checkout step={2} /> // <Payment />
<Checkout step={3} /> // undefined
<Checkout step={-1} /> // undefined

A rational solution

You should protect yourself and your collegues from this hard-to-debug code using a more explicit approach, avoiding magic numbers and using PropTypes:

const checkoutSteps = {
  address: Address,
  shipment Shipment,
  payment: Payment
}

const propTypes = {
  step: PropTypes.oneOf(['address', 'shipment', 'payment']),
}

/* TIP: easier to maintain
const propTypes = {
  step: PropTypes.oneOf(Object.keys(checkoutSteps)),
}
*/

const Checkout = ({step}) => {

  const ToRender = checkoutSteps[step]

  return (
    <ToRender />
  )
}

Checkout.propTypes = propTypes

export default Checkout

And your code will look like this:

// OK
<Checkout step="address" /> // <Address />
<Checkout step="shipment" /> // <Shipment />
<Checkout step="payment" /> // <Payment />

// Errors
<Checkout step="wrongstep" /> // explicit error "step must be one of..."
<Checkout step={3} /> // explicit error (same as above)
<Checkout step={myWrongVar} /> // explicit error (same as above)

Benefits of this approach

  • code is more explicit, you can clearly see what you want to render
  • you don't need to remember the numbers and their hidden meaning (1 is for Address, 2 is for...)
  • errors are explicit too
  • no headache for your peers :)

Solution 5 - Reactjs

You need to be aware of named export and default export. See https://stackoverflow.com/questions/36795819/when-should-i-use-curly-braces-for-es6-import

In my case, I fixed it by changing from

import Provider from 'react-redux'

to

import { Provider } from 'react-redux'

Solution 6 - Reactjs

I had this problem when I added a css file to the same folder as the component file.

My import statement was:

import MyComponent from '../MyComponent'

which was fine when there was only a single file, MyComponent.jsx. (I saw this format in an example and gave it a try, then forgot I'd done it)

When I added MyComponent.scss to the same folder, the import then failed. Maybe JavaScript loaded the .scss file instead, and so there was no error.

My conclusion: always specify the file extension even if there is only one file, in case you add another one later.

Solution 7 - Reactjs

I was getting this error as well.

I was using:

import ReactDOM from 'react-dom';

Fix was doing this, instead:

import {ReactDOM} from 'react-dom';

Solution 8 - Reactjs

For future googlers:

My solution to this problem was to upgrade react and react-dom to their latest versions on NPM. Apparently I was importing a Component that was using the new fragment syntax and it was broken in my older version of React.

Solution 9 - Reactjs

This issue has occurred to me when I had a bad reference in my render/return statement. (point to a non existing class). Also check your return statement code for bad references.

Solution 10 - Reactjs

Most of the time this indicates an import/export error. But be careful to not only make sure the referenced file in the stack trace is well exported itself, but also that this file is importing other components correctly. In my case the error was like this:

import React from 'react';

// Note the .css at the end, this is the cause of the error!
import SeeminglyUnimportantComponent from './SeeminglyUnimportantComponent.css';

const component = (props) => (            
  <div>
    <SeeminglyUnimportantComponent />
    {/* ... component code here */}
  </div>    
);

export default component;

Solution 11 - Reactjs

I think the most important thing to realize when troubleshooting this bug is that it manifests when you attempt to instantiate a component that doesn't exist. This component doesn't have to be imported. In my case I was passing components as properties. I forgot to update one of the calls to properly pass the component after some refactoring. Unfortunately, since JS isn't statically typed my bug wasn't caught, and it took some time to figure out what was happening.

To troubleshoot this bug inspect the component before you render it, to make sure that it's the type of component you expect.

Solution 12 - Reactjs

It means your import/export is incorrect.

  • Check newly added import/exports.
  • In my case I was using curly brackets unnecessary. Issue got resolved automatically when I removed these curly brackets.
import { OverlayTrigger } from 'react-bootstrap/OverlayTrigger';

Solution 13 - Reactjs

In my case, VS Code let me down.

Here is the hierarchy of my components:

<HomeScreen> =>  <ProductItemComponent> =>  <BadgeProductComponent>

I had the wrong import of the ProductItemComponent. The fact is that this component used to be in the shared folder, but then it was moved to the home folder. But when I moved the file to another folder, the import did not update and remained the same:

../shared/components

At the same time, the component worked fine and VS Code did not highlight the error. But when I added a new BadgeProductComponent to the ProductItemComponent, I had a Render Error and thought that the problem was in the new BadgeProductComponent, because when this component was removed, everything worked!

And even more than that, if I went through a hotkey to the ProductItemComponent which had the ../shared/components address, then VS Code redirected me to the Home folder with the address ../home/components.

In general, check the correctness of all imports at all component levels.

Solution 14 - Reactjs

I was missing a React Fragment:


function Bar({ children }) {

  return (
    <div>
     {children}
    </div>
  );
}

function Foo() {
  return (
    <Bar>
      <Baz/>
      <Qux/>
    </Bar>
  );
}

The code above throws the error above. But this fixes it:

<Bar>
  <>
    <Baz/>
    <Qux/>
  </>
</Bar>

Solution 15 - Reactjs

My case was not an import issue like many of the answers above say. In mine we were using a wrapper component to do some translation logic and I was passing the child component in incorrectly like so:

const WrappedComponent = I18nWrapper(<ChildForm {...additionalProps} />);

When I should have been passing it in as a function:

const WrappedComponent = I18nWrapper(() => <ChildForm {...additionalProps} />);

Solution 16 - Reactjs

What missing for me was I was using

import { Router, Route, browserHistory, IndexRoute } from 'react-router';

instead or correct answer should be :

import { BrowserRouter as Router, Route } from 'react-router-dom';

Ofcourse you need to add npm package react-router-dom:

npm install react-router-dom@next --save

Solution 17 - Reactjs

If you have this error when testing a component, make sure that every child component render correctly when run alone, if one of your child component depend on external resources to render, try to mock it with jest or any other mocking lib:

Exemple:

jest.mock('pathToChildComponent', () => 'mock-child-component')

Solution 18 - Reactjs

In my case, the error occurred when trying to use ContextApi. I have mistakenly used:

const MyContext = () => createContext()

But it should have been defined as:

const MyContext = createContext()

I am posting it here so that future visitors who get stuck on such a silly mistake will get it helpful to avoid hours of headache, coz this is not caused by incorrect import/export.

Solution 19 - Reactjs

Circular dependency is also one of the reasons for this. [in general]

Solution 20 - Reactjs

In my case I forgot to import and export my (new) elements called by the render in the index.js file.

Solution 21 - Reactjs

It's quite simple, really. I got this issue when I started coding React, and the problem is almost always because the import:

import React, { memo } from 'react';

You can use destructuring this because react lib has a property as memo, but you can not destructuring something like this

import { user } from 'assets/images/icons/Profile.svg';

because it's not a object.

Hope it helps!

Solution 22 - Reactjs

xxxxx.prototype = {
  dxxxx: PropTypes.object.isRequired, // eslint-disable-line react/forbid-prop-types
};

You must add // eslint-disable-line react/forbid-prop-types, then it work!

Solution 23 - Reactjs

The application that I was working on, stored the name of react components as a widget configuration in the browser storage. Some of these components got deleted and the app was still trying to render them. By clearing the browser cache, I was able to resolve my issue.

Solution 24 - Reactjs

For me, I had two files with the same name but different extensions (.js and .tsx). Thus in my import I had to specify the extension.

Solution 25 - Reactjs

For me removing Switch solved the issue

import React from "react";
import "./styles.css";
import { Route, BrowserRouter, Routes } from "react-router-dom";
import LoginPage from "./pages/LoginPage";
import HomePage from "./pages/HomePage";

export default function App() {
  return (
    <BrowserRouter>
      <Routes>
        <Route exact path="/" element={<HomePage />} />
        <Route path="/login" element={<LoginPage />} />
      </Routes>
    </BrowserRouter>
  );
}

Solution 26 - Reactjs

For me this happened while I have tried to import a named import as default import, SO I got this error

import ProductCard from '../../../components/ProductCard' // that what caused the issue
Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: undefined. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.

Check the render method of `TopVente`.

So I had to fix it by name import

import { ProductCard } from '../../../components/ProductCard'

Solution 27 - Reactjs

In my case, the order in which you create the component and render, mattered. I was rendering the component before creating it. The best way is to create the child component and then the parent components and then render the parent component. Changing the order fixed the issue for me.

Solution 28 - Reactjs

In my case I just had to upgrade from react-router-redux to react-router-redux@next. I'm assuming it must have been some sort of compatibility issue.

Solution 29 - Reactjs

In simply words, somehow the following is happening:

render() {
    return (
        <MyComponent /> // MyComponent is undefined.
    );
}

It may not necessarily be related with some incorrect import or export:

render() {
    // MyComponent may be undefined here, for example.
    const MyComponent = this.wizards[this.currentStep];

    return (
        <MyComponent />
    );
}

Solution 30 - Reactjs

I was getting this error and none of the responses was my case, it might help someone googling:

I was defining a Proptype wrong:

ids: PropTypes.array(PropTypes.string)

It should be:

ids: PropTypes.arrayOf(PropTypes.string)

VSCode and the compile error didnt give me a correct hint.

Solution 31 - Reactjs

This is an error that is some how had to debug. As it has been said many times, improper import/export can cause this error but surprisingly i got this error from a small bug in my react-router-dom authentication setup below is my case:

WRONG SETUP:

const PrivateRoute = ({ component: Component, ...rest }) => (
	<Route
		{...rest}
		render={(props) => (token ? <Component {...props} /> : <Redirect to={{ pathname: "/login" }} />)}
	/>
);

CORRECT SETUP:

const PrivateRoute = ({ component: Component, token, ...rest }) => (
	<Route
		{...rest}
		render={(props) => (token ? <Component {...props} /> : <Redirect to={{ pathname: "/login" }} />)}
	/>
);

The only difference was I was deconstructing the token in the PrivateRoute component. By the way the token is gotten from localstorage like this const token = localStorage.getItem("authUser"); so if it is not there I know the user is not authenticated. This can also cause that error.

Solution 32 - Reactjs

> React.Fragment

fixed the issue for me

Error Code:

 return (
            <section className={classes.itemForm}>
             <Card>
             </Card> 
            </section>
      );

Fix

 return (
      <React.Fragment>
        <section className={classes.itemForm}>
         <Card>
         </Card> 
        </section>
      </React.Fragment>
  );

Solution 33 - Reactjs

This is not necessary a direct issue related to import/export. In my case, I was rendering a child element inside a parent element and the child element has jsx element / tag which is used but not imported. I imported it and I used it then it fixed the issue. So the problem was in jsx elements which are inside the child element NOT the export of child element itself.

Solution 34 - Reactjs

I got the exactly same error, Do this instead:

npm install react-router@next 
react-router-dom@next
npm install --save history

Solution 35 - Reactjs

In my case, I have added the same custom component as a props instead of actual props

   import AddAddress from '../../components/Manager/AddAddress';
    
    class Add extends React.PureComponent {
      render() {
        const {
          history,
          addressFormData,
          formErrors,
          addressChange,
          addAddress,
          isDefault,
          defaultChange
        } = this.props;
    

Error:

    return (
        <AddAddress
          addressFormData={addressFormData}
          formErrors={formErrors}
          addressChange={addressChange}
          addAddress={AddAddress} // here i have used the Component name as probs in same component itself instead of prob
          isDefault={isDefault}
          defaultChange={defaultChange}
        />
      </SubPage>

Solution:

return (
    <AddAddress
      addressFormData={addressFormData}
      formErrors={formErrors}
      addressChange={addressChange}
      addAddress={addAddress} // removed the component name and give prob name
      isDefault={isDefault}
      defaultChange={defaultChange}
    />
  </SubPage>

Solution 36 - Reactjs

So I had this issue, and I was able to fix it in a strange way. I thought I'd throw this out in case anyone else encountered it and was getting desperate.

I had a conditionally rendering react element, which rendered only when an object in state was greater than zero. Within the rendering function - when the ternary operator proved true, I received the error that this post is about. I was using a <React.Fragment> in my render function - which is the way I usually group children instead of the newer way with the newer short syntax (<> and </>).

However, when I changed the <React.Fragment> to the short syntax - the react element rendered correctly and the error stopped appearing. I took a look at Facebooks React-Fragment documentation, and I don't see any reason on there to believe there is a dramatic difference between the two that would cause this. Regardless, below are two simplified snippets of code for your review. The first one demonstrates the code that was yielding the error, and the second one demonstrates the code that fixed the issue. At the bottom is the render function of the component itself.

Hope someone finds this helpful.

Code Sample 1 - Error Conditionally Rendered React Element


  renderTimeFields = () => {
    return (
      <React.Fragment>
        <div className="align-left">
                <div className="input-row">
                  <label>Date: </label>
                  <input type="date" className="date" name="date" min={new Date().toISOString().split('T')[0]} required/>
                </div>
              </div>
              <div className="align-left sendOn-row">
                <div className="input-row">
                  <label>Time: </label>
                  <input type="time" className="time" name="time" required/>
                </div>
              </div>
      </React.Fragment>
    );
  }

Code Sample 2 - No Error Conditionally Rendered React Element


  renderTimeFields = () => {
    return (
      <>
        <div className="align-left">
                <div className="input-row">
                  <label>Date: </label>
                  <input type="date" className="date" name="date" min={new Date().toISOString().split('T')[0]} required/>
                </div>
              </div>
              <div className="align-left sendOn-row">
                <div className="input-row">
                  <label>Time: </label>
                  <input type="time" className="time" name="time" required/>
                </div>
              </div>
      </>
    );
  }

Render Function Within Component

render() {
<form>
...
{emailsInActiveScript > 1 ? this.renderTimeFields() : null}
</form>
etc...
}

Solution 37 - Reactjs

I have had this problem already. My workaround is:

At file config routes:

const routes = [
    { path: '/', title: '', component: Home },
    { path: '*', title: '', component: NotFound }
]

to:

const routes = [
    { path: '/', title: '', component: <Home /> },
    { path: '*', title: '', component: <NotFound /> }
]

Solution 38 - Reactjs

This issue happened when I was passing nothingundefined as a value to the child component I created. I did this <MyComponent src="" /> which caused the error. Then changed it to <MyComponent src=" " /> because I really wanted to pass in nothing...and it was resolved.

Solution 39 - Reactjs

In my case, I imported Avatar as like import { Avatar } from 'react-native-paper'; and while rendering I wrapped Avatar element in TouchableOpacity which caused the above problem. After removing TouchableOpacity, all good.

Solution 40 - Reactjs

I just spent 30 minutes trying to solve this BASIC basic issue.

My problem was I was importing react native elements

eg import React, { Text, Image, Component } from 'react';

And trying to use them, which caused me to receive this error.

Once I switch from <Text> to <p> and <Image> to <img> everything worked as expected.

Solution 41 - Reactjs

// @flow

import React from 'react';
import { styleLocal } from './styles';
import {
  View,
  Text,
  TextInput,
  Image,
} from 'react-native';
import { TouchableOpacity } from 'react-native-gesture-handler';

export default React.forwardRef((props, ref) => {
const { onSeachClick, onChangeTextSearch , ...otherProps } = props;

  return (
		<View style={styleLocal.sectionStyle}>
		<TouchableOpacity onPress={onSeachClick}>
			<Image								
					source={require('../../assets/imgs/search.png')}
					style={styleLocal.imageStyle} />
				</TouchableOpacity>
			<TextInput
				style={{ flex: 1, fontSize: 18 }}
				placeholder="Search Here"
				underlineColorAndroid="transparent"
				onChangeText={(text) => { onChangeTextSearch(text) }}
			/>
		</View>
  );
});
 import IGPSSearch from '../../components/IGPSSearch';
<Search onSeachClick={onSeachClick} onChangeTextSearch= {onChangeTextSearch}> </Search>

Solution 42 - Reactjs

I have a similar issue. It was happen because I was importing in a parent component a child component that was deleted and in effect not exist. I was review each import of parent component, in this case the parent compent is ListaNegra.js

enter image description here

Solution 43 - Reactjs

EDIT

You are complexifying the process. Just do this :

index.js:

import React from 'react';
import ReactDom from 'react-dom';
import routes from './routes.js';
require('jquery');
import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap/dist/js/bootstrap.min.js';
import './css/main.css';

ReactDom.render(<routes />, document.getElementById('root'));

routes.js:

import React from 'react';
import { AppContainer } from 'react-hot-loader';
import { Router, Route, browserHistory, IndexRoute } from 'react-router';
import store from './store/store.js';
import { Provider } from 'react-redux';
import App from './containers/App.jsx';
import Products from './containers/shop/Products.jsx';
import Basket from './containers/shop/Basket.jsx';

const routes =
    <AppContainer>
        <Provider store={store}>
            <Router history={browserHistory}>
                <Route path="/" component={App}>
                    <IndexRoute component={Products} />
                    <Route path="/basket" component={Basket} />
                </Route>
            </Router>
        </Provider>
    </AppContainer>;

export default routes;

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoeTideeView Question on Stackoverflow
Solution 1 - ReactjsChrisView Answer on Stackoverflow
Solution 2 - ReactjsPedro GonçalvesView Answer on Stackoverflow
Solution 3 - ReactjsIgnatius AndrewView Answer on Stackoverflow
Solution 4 - ReactjslifeisfooView Answer on Stackoverflow
Solution 5 - Reactjsonmyway133View Answer on Stackoverflow
Solution 6 - ReactjsLittle BrainView Answer on Stackoverflow
Solution 7 - ReactjsSuttapong WView Answer on Stackoverflow
Solution 8 - ReactjsvarogenView Answer on Stackoverflow
Solution 9 - ReactjsCorneliusView Answer on Stackoverflow
Solution 10 - ReactjsFelipe SuárezView Answer on Stackoverflow
Solution 11 - ReactjsAlexView Answer on Stackoverflow
Solution 12 - ReactjsYuvraj PatilView Answer on Stackoverflow
Solution 13 - ReactjsIhor KupaView Answer on Stackoverflow
Solution 14 - ReactjsPaul Razvan BergView Answer on Stackoverflow
Solution 15 - ReactjspatrickbadleyView Answer on Stackoverflow
Solution 16 - ReactjsPranav SinghView Answer on Stackoverflow
Solution 17 - ReactjsZEEView Answer on Stackoverflow
Solution 18 - ReactjsBhojendra RauniyarView Answer on Stackoverflow
Solution 19 - ReactjsMaor DahanView Answer on Stackoverflow
Solution 20 - ReactjsBorjovskyView Answer on Stackoverflow
Solution 21 - ReactjsThuan TranView Answer on Stackoverflow
Solution 22 - ReactjsGuYu LeeView Answer on Stackoverflow
Solution 23 - ReactjssimibacView Answer on Stackoverflow
Solution 24 - ReactjsThuyView Answer on Stackoverflow
Solution 25 - ReactjsCodingEraView Answer on Stackoverflow
Solution 26 - ReactjsDINA TAKLITView Answer on Stackoverflow
Solution 27 - ReactjsMahesh Kumar RondeView Answer on Stackoverflow
Solution 28 - ReactjsdspacejsView Answer on Stackoverflow
Solution 29 - ReactjsfalsarellaView Answer on Stackoverflow
Solution 30 - ReactjsllessaView Answer on Stackoverflow
Solution 31 - ReactjsLawrence EaglesView Answer on Stackoverflow
Solution 32 - ReactjsupogView Answer on Stackoverflow
Solution 33 - ReactjsTanakaView Answer on Stackoverflow
Solution 34 - ReactjsYutoView Answer on Stackoverflow
Solution 35 - ReactjsKARTHIKEYAN.AView Answer on Stackoverflow
Solution 36 - ReactjsSteveView Answer on Stackoverflow
Solution 37 - ReactjscongdcView Answer on Stackoverflow
Solution 38 - ReactjsBrunoEloView Answer on Stackoverflow
Solution 39 - ReactjsDeeView Answer on Stackoverflow
Solution 40 - ReactjsJacksonkrView Answer on Stackoverflow
Solution 41 - ReactjsKeshav GeraView Answer on Stackoverflow
Solution 42 - ReactjsIOrch-KView Answer on Stackoverflow
Solution 43 - ReactjsJohn SmithView Answer on Stackoverflow