Introduction of Context API
Learn about the Context API in React and the application that we’ll be working on.
We'll cover the following...
We'll cover the following...
Introduction to TypeScript in React applications
Using TypeScript in any large React application provides a level of safety that’s worth the additional effort overusing JavaScript. TypeScript can comb through all of our components and confirm that we’re passing in all the props each component requires, and it makes sure they’re the types we assume they are and not something unwanted, like undefined
. But there are some cases where even that trade-off is ...