React Day 1: Basics, Components & Folder Structure
Day 1 of React series. Set up your first React app, explore the folder structure, and build your first custom components.
Day 1 of React series. Set up your first React app, explore the folder structure, and build your first custom components.
Day 2 of React series. Learn the rules of Hooks, manage state with useState, and handle list rendering with map().
Day 3 of React series. Master Fragments, learn to pass JSX as props, handle form inputs, and implement immutable state updates.
Day 4 of React series. Understand how to share state between components by lifting state up to a common ancestor.
Day 5 of React series. A complete guide to styling React components, from inline styles to scoped CSS Modules.
Day 6 of React series. Guide to effective debugging in React using console, Strict Mode, and React Developer Tools.
Day 7 of React series. Master direct DOM manipulation with Refs and rendering outside the main tree with Portals.
Day 8 of React series. Understand prop drilling and implement the Context API for efficient global state management.
Day 9 of React series. Master the useEffect hook for handling side effects, lifecycle events, and data fetching.
Day 10 of React series. Deep dive into performance optimization techniques using memo, useMemo, and useCallback.