Let's Build our Store using REDUX TOOLKITWhy Redux Toolkit & not Redux? We'll just have to install 2 packages @reduxjs/toolkit (Core) & react-redux (Bridge between React & Redux TKT). Write / Update Slice of Store Whenever you click an Add To Cart Button => It DISPATCHES an Action => whi...Apr 22, 2024·4 min read
React Props Explained with ExamplesPrerequisites : Whenever you start a project, you always need to do PROPER PLANNING first.Never start your project before planning.Proper planning starts with making a Wireframe/Mock of your entire UI.That'll make you understand which all components ...Apr 6, 2024·4 min read
Laying the Foundation of React, JSX & BabelAs we saw we can write React with core React (createElement, etc)But it becomes very complicated as and when the HTML structure needs to be more and more nested. So to make our lives easier Facebook Developers came up with JSX. (React is possible wi...Apr 3, 2024·6 min read
Igniting ⚡️ our React App with ParcelWhy your React App is so FAST (just like the Flash guys from TBBT above😜) & Optimised? Is it just React which does all this? The Answer is NO. Let's see how ✍🏻 Our Production code, we need it to be: Minified (removing comments, etc) Compressed b...Apr 2, 2024·6 min read
Core React JS FundamentalsImporting React via CDN Links (content delivery network) Websites where React is hosted and we're just pulling React into our project via these CDN links. Once these links are included in project => Now our project has superpowers of React inside i...Mar 29, 2024·5 min read