Skip to content
Advertisement

React JS app getting error – Error: Element type is invalid

I created an app using create react app. I added a functional component named Signup which is called from App.js. And I am getting an error on screen. It says I am not exporting component properly. I could not understand what is wrong. I am putting the three component files here.

Here is my file structure

Signup.js

JavaScript

App.js

JavaScript

index.js

JavaScript

Folder Structure

JavaScript

Error enter image description here

Advertisement

Answer

It seems that <Form.label> isn’t the correct syntax in the react-bootstrap documentation, and I suspect that this is what’s causing the element type is invalid error.

Trying changing it to <Form.Label>

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement