Published onMarch 25, 2022Getting Started with ReduxreactreduxOverview of Redux and how to use it. Includes basics of actions, reducers, and store.
Published onMarch 20, 2022Accessing the DOM with RefsreactrefsdomAccess DOM elements directly by using the ref system.
Published onMarch 19, 2022Passing Props to a ComponentreactpropsSimple guide on how props are used to display and pass information to a component.
Published onMarch 19, 2022State in ReactreactstateUnderstanding what is state, passing state as props, and destructuring state.
Published onMarch 18, 2022Understanding 'this' in JavaScriptreactthis"this" has always been confusing for many JavaScript developers, but this post will hopefully shed some light on it.
Published onMarch 17, 2022React Context APIreactcontextreduxInstead of "prop drilling" to pass around data, we can use react context API to pass around data
Published onMarch 17, 2022Class Based Components in ReactreactclasscomponentsHow to Implement States and Lifecycle Methods in Your Web Applications with React
Published onMarch 16, 2022Adding Event Listeners to React ComponentsreacteventlistenersBasic understanding of event listeners in React
Published onMarch 16, 2022LifeCycle Methods in ReactreactLifeCycleEach component in React has a lifecycle that goes through three main phases Mounting, Updating, and Unmounting.
Published onMarch 15, 2022Functional-Based Components in ReactreactFunctional-Based-ComponentsReact has two types of components: Class-based and Functional-based. This post will show you how to implement Functional-Based Components in React.
Published onMarch 14, 2022Getting Started with Hooks in ReactreacthooksHooks are a way to write reusable code, instead of more classic techniques like inheritance. Come take a look at the most commonly used hooks in React.
Published onMarch 13, 2022JSX vs HTMLreactjsxhtmlSo many people have asked me about JSX vs HTML. I will try to answer them here.