Component props
We call props
the initial values passed to a component.
We previously created a WelcomeMessage
component
and we used it like this:
This component does not have any initial value. It does not have props.
Props can be passed as attributes to the component in the JSX:
and inside the component we receive the props as argument:
Itβs common to use object destructuring to get the props by name:
myprop
is one of the props contained in theprops
object, like this:{ myprop: 'test' }
. Using this syntax we only extract this prop from theprops
object.
Now that we have the prop, we can use it inside the component, for example, we can print its value in the JSX:
Curly brackets here have various meanings. In the case of the function argument, curly brackets are used as part of the object destructuring syntax.
Then we use them to define the function code block, and finally in the JSX to print the JavaScript value.
Passing props to components is a great way to pass values around in your application.
A component either holds data (has state) or receives data through its props.
We can also send functions as props, so a child component can call a function in the parent component.
A special kind of prop is called children
. That contains the value of anything that is passed between the opening and closing tags of the component, for example:
In this case, inside WelcomeMessage
we could access the value Here is some message
by using the children
prop:
Last updated
Was this helpful?