Files
SAE-BUT2-frontend/src/utils/events/getEventById.js
T
2026-03-13 15:30:52 +01:00

6 lines
155 B
JavaScript

import fetchWrapper from "../fetchWrapper";
export default async function GetEventById(id) {
return fetchWrapper(`/api/events/${id}`, null, "GET");
}