useEffect(()=>{ fetch("/api/inventory_get.php") .then(r=>r.json()) .then(setInventory); },[]); fetch("/api/inventory_save.php",{ method:"POST", headers:{ "Content-Type":"application/json"}, body: JSON.stringify(data) });