Concept Flow - What is state
Component renders
useState sets initial state
User interacts (e.g., clicks button)
State update function called
React schedules re-render
Component re-renders with new state
UI updates to show new state
This flow shows how React components use state to remember values and update the UI when those values change.