Login.jsx component
Anonymous
javascript
07/05/2024 7:18 AM
452 B
18
Indexable
//dispatches the login POST request
const handleSubmit = (e) => {
e.preventDefault()
login(loginFormData)
}
// sets authentication to state
// navigates to home
useEffect(() => {
if (isSuccess && data) {
dispatch(setCredentials(data.token))
navigate("/")
}
}, [isSuccess, data, navigate, dispatch])Editor is loading...
Leave a Comment