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
x
38
38
1
import React, { useRef } from 'react'
2
import {Card, Form, Button} from 'react-bootstrap';
3
4
export default function Signup() {
5
6
const emailRef = useRef();
7
const passwordRef = useRef();
8
const passwordConfirmRef = useRef();
9
10
return (
11
<>
12
<Card>
13
<Card.Body>
14
<h2 className="text-center mb-4">Sign up</h2>
15
<Form>
16
<Form.Group id="email">
17
<Form.label>Email</Form.label>
18
<Form.Control type="email" ref={emailRef} required />
19
</Form.Group>
20
<Form.Group id="password">
21
<Form.label>Email</Form.label>
22
<Form.Control type="password" ref={passwordRef} required />
23
</Form.Group>
24
<Form.Group id="password-confirm">
25
<Form.label>Confirm Password</Form.label>
26
<Form.Control type="password" ref={passwordConfirmRef} required />
27
</Form.Group>
28
<Button className="w-100" type="submit">Sign Up</Button>
29
</Form>
30
</Card.Body>
31
</Card>
32
<div className="w-100 text-center mt-2">
33
Already have an account? Login
34
</div>
35
</>
36
)
37
}
38
App.js
JavaScript
1
12
12
1
import React from 'react';
2
import './App.css'
3
import Signup from './components/Signup'
4
5
export default function App() {
6
return (
7
<div className="App">
8
<Signup/>
9
</div>
10
);
11
}
12
index.js
JavaScript
1
18
18
1
import React from 'react';
2
import ReactDOM from 'react-dom';
3
import './index.css';
4
import App from './App';
5
import reportWebVitals from './reportWebVitals';
6
7
ReactDOM.render(
8
<React.StrictMode>
9
<App />
10
</React.StrictMode>,
11
document.getElementById('root')
12
);
13
14
// If you want to start measuring performance in your app, pass a function
15
// to log results (for example: reportWebVitals(console.log))
16
// or send to an analytics endpoint.
17
reportWebVitals();
18
Folder Structure
JavaScript
1
6
1
src (folder)
2
- App.js
3
- index.js
4
-- components (folder)
5
--- Signup.js
6
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>