import { composeUserRatingURL, initialUserRating, processUserRating } from '../../api/userRating' import { UserRating, isUserRatingResponse } from '../../api/userRating/types' import useFetch, { UseFetchReturn } from '../useFetch' const useUserRating = (userId: number): UseFetchReturn => ( // useFetch( // composeUserRatingURL(userId), // 'GET', // false, // isUserRatingResponse, // processUserRating, // initialUserRating // ) { data: 3, loading: false, error: null, refetch: () => { return }, } // { // data: undefined, // loading: true, // error: null, // refetch: () => { return }, // } ) export default useUserRating