我正在使用钩子,但出现此错误
第 25 行:在函数“contact”中调用 React Hook“React.useState”,该函数既不是 React 函数组件,也不是自定义 React Hook 函数 react-hooks/rules-of-hooks 第 26 行:React Hook“React.useState”是在函数“contact”中调用,它既不是 React 函数组件,也不是自定义 React Hook 函数 react-hooks/rules-of-hooks 第 27 行:在函数“contact”中调用 React Hook“React.useState”,它既不是 React函数组件或自定义 React Hook 函数 react-hooks/rules-of-hooks
export default function contact() {
const [messageInput, setMessageInput] = React.useState("");
const [email, setEmail] = React.useState("");
const [name, setName] = React.useState("");
const enables =
messageInput.length > 0 &&
email.length > 0 &&
name.length > 0;
return (
<div className="App">
我之前做过一个类似的项目,我使用我的旧项目作为参考。这在我的旧项目中没有发生。