What is SWR? useSWR it’s a vercel library “stale-while-revalidate” the official definition: A HTTP cache invalidation strategy popularized by HTTP RFC 5861. SWR is a strategy to first return the data from cache (stale), then send the fetch request (revalidate), and finally come with the up-to-date data. useSWR is a React Hook library…