#Optimistic UI

1 item tagged “Optimistic UI

TILReact2 min read

useOptimistic auto-reverts on failure — a hand-rolled optimistic hook doesn't

TIL why React's useOptimistic hook doesn't need explicit rollback code when a server call fails, while a manual optimistic-update hook built on plain useState does.

#React