So, you've decided to dive into React Hooks. Things have been going well (hopefully) until you get a mysterious error similar to the one below.
import React, { useState } from 'react';
const landingPage = ({ user }) => {
const [user, setUser] = useState(user);
return (
<div>
<span> Your users is </span> { user.name }
</div>
);
}
export default landingPage;
Error: React Hook "useState" is called in a function "landingPage" which is neither a React function or a custom React Hook function.
Oh no! What happened? Setting aside the awful grammar in that error message, what else went wrong? It certainly looks like a React component. You've imported React
. You've imported useState
. You are exporting your function. Everything should be working, but it's not.
Here's the gotcha, when you are using React Hooks, your functional component's name MUST start with a capital letter. In this case, the function name is landingPage
. If you change it to LandingPage
it will work as expected.
Likewise, if you are going to use a hook inside of a hook custom hook, the name of the custom hook MUST start with "use" (lowercase).
If you are wondering why, check out the React documentation on the subject.
JS Bites
Have you ever need a quick solution to a problem, but when you search
Google you are met with pages of tutorials and detailed instructions that
bury the information you need? That's what JS Bites attempts to solve.
Each post is a small, bite-sized primer on a very specific JS topic. The
aim is to provide enough detail to boost understanding, but not so much that
you become overwhelmed or lost.
Latest comments (16)
TYSM
You solved my problem with a quick answer, Thanks Rane!!!
amazing thank you, saved me from a ton of googling.
Yay. Such a simple thing. Such a simple solution. I guess I missed them specifying this in the documentation
Thanks a ton, Rane!
Thanks so much, really appreciate the explanations
Thanks Rane, great advice, i needed exactly it.
Wonderfull. Thanks.
This was a very irritating issue. and your post help me a lot.
Thank you Rane!
Thanks, saved a lot of time.