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