Files
YuGiOh-Database-Frontend/src/services/api.jsx
T
2026-03-27 19:35:13 +01:00

8 lines
250 B
React

const API_BASE = 'http://localhost:3000'; // Backend URL
export async function fetchCards() {
const response = await fetch(`${API_BASE}/exportCards`);
if (!response.ok) throw new Error('Failed to fetch cards');
return await response.json();
}