ASAbhishek Singhinabhisheksingh98.hashnode.dev·Aug 25, 2023 · 3 min readGetting started with React Context APIWhenever you're utilizing a component architecture, as your application grows, the ability to share state amongst different components will inevitably become an issue. Let's pretend we had an app with the following architecture, each circle represent...00
ASAbhishek Singhinabhisheksingh98.hashnode.dev·Jul 22, 2022 · 3 min readWhat is React Query and why do we need it?React Query, a React library that simplifies the way we fetch cache and synchronize data from a server. React itself has no opinions about how you fetch data from the front end. The most basic approach is to use the browser fetch api. When a compone...00
ASAbhishek Singhinabhisheksingh98.hashnode.dev·Jul 22, 2022 · 2 min read5 Ways to center a <div>The Document Structure: We have two divs, a 'parent' and a 'child'. We will work on centering 'child' — both vertically and horizontally — with respect to 'parent'. 1. Using Flexbox Flexbox has made centering a div (and virtually anything) easy as ...00