React
React ComponentsReact Components
Components act like custom HTML tags in React.
Read Time
5 min readDifficulty
BeginnerLast Updated
Jun 15, 2026Version
v1.0.0Introduction
Components are independent, reusable pieces of a website, like a navigation bar or a button. Developers write a component once and use it everywhere. Modern React relies heavily on functional components.
Example
Example
Key Points
- Components always start with a capital letter.
- They return JSX code to render on the screen.
- Functional components are the standard approach.
- Class components are the older, outdated method.