porridger/front/src/hooks/api/useTrashboxes.ts
2023-07-14 20:34:50 +03:00

19 lines
422 B
TypeScript

import { LatLng } from 'leaflet'
import useFetch from './useFetch'
import { composeTrashboxURL } from '../../api/trashbox'
import { isTrashboxResponse } from '../../api/trashbox/types'
const useTrashboxes = (position: LatLng) => {
return useFetch(
composeTrashboxURL(position),
'GET',
true,
(data) => data,
isTrashboxResponse,
[]
)
}
export default useTrashboxes