38947-vm/Tripzy-main/frontend/src/api/enrolledUsers.js
2026-03-03 12:36:05 +00:00

6 lines
194 B
JavaScript

import { axiosInstance } from "../utils";
export const getEnrolledUsers = async (tripId) => {
return axiosInstance.get(`/enrolledTrips/getEnrolledUsers/${tripId}`).then((res) => res.data);
};