Login.jsx component
unknown
javascript
a year ago
338 B
11
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