Sunney Soodsunneysood.hashnode.dev·Apr 23, 2024React: Best Practiceshttps://www.youtube.com/watch?v=5r4LlVAFrd0&ab_channel=PedroTech Below are my key take aways from the above video. Kindly note that its recommended to follow the best practices but sometimes you got to do what you got to do. Following are 4 key bes...React || Javascript || Next.JS || Node.JSReact
Lokesh Sharmalokeshkavisth.hashnode.dev·Mar 26, 2024Level Up Your React: Adding Basic TypeScript for Stronger ComponentsBuilding React applications often involves moving data and manipulating the DOM. JavaScript, while strong, is prone to type mistakes at runtime. TypeScript, a superset of JavaScript, comes to the rescue by ensuring type safety, resulting in more robu...TypeScript
Titus Kiplagatkiplagatitus.hashnode.dev·Aug 10, 2023Working with Props in React and TypeScriptThis guide will walk you through the basics of using props in a React component while leveraging the power of TypeScript's static typing. Props allow you to pass data from a parent component to a child component in React. Declaring Components with Pr...React