Madeleine Moser

Components and Props

They accept arbitrary inputs and return React elements describing what should appear on the screen.

Madeleine Moser
Components and Props

Rendering a Component

Previously, we only encountered React elements that represent DOM tags:

jsx
const element = <div />;

However, elements can also represent user-defined components:

jsx
const element = <Welcome name="Sara" />;

When React sees an element representing a user-defined component, it passes JSX attributes and children to this component as a single object. We call this object “props”.

For example, this code renders “Hello, Sara” on the page:

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

const element = <Welcome name="Sara" />;ReactDOM.render(
  element,
  document.getElementById('root')
);

Try it on CodePen

Let’s recap what happens in this example:

  1. We call ReactDOM.render() with the <Welcome name="Sara" /> element.

  2. React calls the Welcome component with {name: 'Sara'} as the props.

  3. Our Welcome component returns a <h1>Hello, Sara</h1> element as the result.

  4. React DOM efficiently updates the DOM to match <h1>Hello, Sara</h1>.

Note: Always start component names with a capital letter.

React treats components starting with lowercase letters as DOM tags. For example, <div /> represents an HTML div tag, but <Welcome /> represents a component and requires Welcome to be in scope.

To learn more about the reasoning behind this convention, please read JSX In Depth.

We provide premium nursery stock

along with technology-led garden consultancy and design services to both private and public sector organisations large and small.

© باغ مادری و نهالستان گهربار

یارانه نهال پایه رویشی

  •  آدرس تماس: مشهد، میدان آزادی، پردیس دانشگاه فردوسی، مرکز رشد شماره 4 مجتمع آزمایشگاهی گهربار شرق

  •  تماس:  ۰۹۱۵۱۱۳۲۰۱۱  ۰۹۱۵۷۵۷۵۴۶۲