React

Build modern UIs with React

250 tutorials
12 of 250 tutorials
Aug 16, 2026· 6 min read

How to Build a Dropdown Menu in React

Build a React dropdown menu with the ARIA menu button pattern. Handle open and close, keyboard arrows, and clicks outside the menu.

ReactAccessibility
Aug 16, 2026· 6 min read

Why Error Boundaries Do Not Catch Every Error

Error boundaries only catch render-time errors in child components. Event handlers, async code, server rendering, and the boundary itself stay outside their reach.

Error HandlingReact