const host = 'http://localhost:8000/'; const endpoint = 'employees'; export async function getEmployees() { const url = host + endpoint; const response = await fetch(url); const data = await response.json(); return data; }