anshulraheja.hashnode.devUnderstanding CSS SelectorsWhat are CSS selectors? CSS, or Cascading Style Sheets, is a design language that simplifies the process of making web pages presentable. Selectors are used to choose elements and apply styles to them. Types of CSS selectors There are different categ...Sep 23, 2022·4 min read
anshulraheja.hashnode.devRedux and Redux SagaWhat is Redux? We require a tool through which we can control the state of our apps (data). Redux is a state management tool, and that is what it does. Consider it as a storage space for all the data, which provides access to the entire app data (or,...Sep 23, 2022·4 min read
anshulraheja.hashnode.devHow and When to use Context?Intro Context is a react hook that allows you to pass data across any number of React components, regardless of nesting. It allows you to access data globally without passing it as a prop. When the data provided by context changes, then only the comp...Sep 14, 2022·3 min read