ยฉ 2026 Hedgehog Software, LLC
{ refetch }
window.location.reload()
/employees/{id: UUID}
const [employee, { refetch }] = createResource(async () => get_employee(params.id), { deferStream: true, });
<SomeSaveChangesButton onClick={ async () => { const response = await fetch(...); if (response.ok) { refetch(); } } } />
id