Как запихнуть в state redux кастомный хук который проверяет авторизирован пользователь или нет?
import {useEffect, useState} from 'react'
import {localURL} from "../const";
export const useAuth = () => {
const [user, setUser] = useState({})
useEffect(() => {
fetch(`${localURL}/auth/login`)
.then((res) => res.json())
.then((res) => {
setUser(res.user)
})
.then((res) => console.log(user))
.catch((e) => console.log(e));
}, [])
return user
}
const initialState = {
user: {}
}
export default function rootReducer(state = initialState, action) {
return state
}