Skip to content

Latest commit

 

History

History

2-hooks-components

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

React Hooks and Components

What are we Trying to Accomplish

By learning about React hooks like useState and useEffect, as well as understanding components, you aim to become proficient in developing dynamic, interactive, and efficient user interfaces in React. These skills empower you to manage and update application state, handle side effects, create modular and reusable UI components, and ultimately build responsive and user-friendly web applications that are easier to develop, maintain, and scale.

Lectures and Assignments

TLO's(Terminal Learning Objectives)

  • Utilize useState and useEffect to interact with the Virtual DOM
  • Utilize props to pass attributes to components
  • Create Components to isolate behavior

ELO's(Enabling Learning Objective)

  • Understand the relationship between state the Virtual DOM and the DOM
  • Understand the parent to child relationship with Components