← Back to Week 6

React Apps

February 11, 2026

Topics Covered

Slides: slides.com/joelross/info340wi26-react-apps

Development Workflow

React Components Review

Component Composition

State Management with useState()

State tracks internal, changeable data within a component:

const [count, setCount] = useState(0);

const handleClick = () => {
  setCount(count + 1);
};

State vs Props

Event Handling in React

Debugging React

Key Concepts

Resources