Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 866 Bytes

File metadata and controls

14 lines (11 loc) · 866 Bytes

React I

  • Introduction to React In this module we will make the introduction to React and its basics

What is React?

React is a Javascript library used to build user interfaces, we will learn on one page apps (SPAs) and how to use the virtual DOM to improve the efficiency of applications.

Component Architecture Discover how React is based on reusable components that can manage their own state. You'll learn how to combine them to create complex and efficient interfaces.

JSX and Its Syntax Explore JSX, a JavaScript extension that allows you to build components with HTML-like syntax. You'll learn the rules and benefits of using JSX to improve code readability.

Component Lifecycle Learn about the lifecycle of class components in React, including the setup, update, and teardown phases, and how to manage component behavior efficiently.