I\'m trying to use react hooks for a simple problem
const [personState,setPersonState] = useState({ DefinedObject });
with following depend
I had the same issue, but not with the App. I had a custom class but used a lowercase letter to start the function name and also received the error.
Changed the first letter of the function name and the export line to CamelCase and error gone.
in my case the end result was something like:
function Document() {
....
}
export default Document;
this solved my problem.