React

Build modern UIs with React

250 tutorials
12 of 250 tutorials
Aug 15, 2026· 5 min read

What Is React and When Should You Use It?

React is a JavaScript library for building user interfaces from reusable components. Learn what React is, how it works, and when it is the right tool for a project.

React
Aug 15, 2026· 5 min read

How to Create a React App with Vite

Scaffold a new React project with Vite in minutes. Follow the exact command, choose the React template, install dependencies, and start the development server.

React
Aug 15, 2026· 5 min read

How to Stop Event Propagation in React

Stop a React event from bubbling to parent handlers by calling e.stopPropagation() inside the handler. Learn when to use it and what it does not do.

React
Aug 15, 2026· 6 min read

How to Create a Custom Hook in React

Learn the steps to extract repeated stateful logic into a reusable custom Hook, name it correctly, and call it from any component.

HooksReact