Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
268 Bytes
export const fetchSpots = (data) => {
return $.ajax({
method: "GET",
url: `/api/spots?bounds=${JSON.stringify(data.bounds)}`
});
}
export const fetchSpot = id => (
$.ajax({
method: 'Get',
url: `/api/spots/${id}`
})
);