Functional Components in React — a practical guide to React functional components with clear examples you can reuse in real projects.
React Tutorial Series (14/103). Prefer one article? Read the complete React tutorial.
Short description
Hooks work with function components — this is today’s standard style.
Functional component
function Welcome({ name }) {
return <h1>Hello, {name}</h1>;
}