GGarimainkrgarima.hashnode.dev·May 13, 2022 · 4 min readA Practical guide to CSS SpecificityPrerequisites Basic html CSS selectors What are id, classes, elements and inline styles in CSS No knowledge of Javascript is required here Introduction Have you ever encountered a problem where you couldn't override a style because other styles wer...00
GGarimainkrgarima.hashnode.dev·May 12, 2022 · 6 min readUseContext Hook for beginnersPrerequisites: Knowledge of useState and how it works Working with components What is React context and why do we use it? React context is way to manage states globally. To manage states globally we use useContext hook. Problem: Ever encountered a ...01N
GGarimainkrgarima.hashnode.dev·May 11, 2022 · 3 min readDifferent Web storage techniquesWeb storage API is used by developers to store some data in the web browser. The data is stored in the form of key-value pair of Strings. They are stored in the window object of the browser. window.localStorage There are 2 ways to store data in the ...02VN