(recaptchaValue) => {
handleLogin(recaptchaValue);
};
const onChange = (recaptchaValue) => {
handleResetPassword(recaptchaValue);
};
объеденить в один хук в контейнере?
const onChange = useCallback((recaptchaValue) =>{
handleLogin(recaptchaValue);
handleResetPassword(recaptchaValue);
}, [handleLogin, handleResetPassword])
почему нельзя?
Обсуждают сегодня