Knowledge Hub/React Basics/What are Components?
1 / 2
React Basics

What are Components?

Components are the building blocks of any React app.

Code Example

code example
function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}

Try It Yourself

Interactive
editor

Edit the code above and paste it in a live environment (e.g. CodeSandbox, StackBlitz) to see it in action.