Files
wedding-planner/lib/helper/fetchTodos.ts
2025-06-29 11:00:52 -04:00

5 lines
203 B
TypeScript

export async function fetchEventTodos(eventId: string) {
const res = await fetch(`/api/events/${eventId}/todo`)
if (!res.ok) throw new Error('Failed to fetch todos')
return await res.json()
}