[Solved] I want to use Hooks here but don’t know how . This is my code

React hooks can’t be used outside of functional components. Here, you have a class components (also can’t use hooks) Register. You need convert it into functional component and append your state hooks into it. Also, you can useCallback for momize function. export const Register = (props) => { const [usernameReg, setUsernameReg] = useState(“”); const [passwordReg, … Read more