Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮     
     ❯   

React Destructuring Props


Destructuring Props

You can limit the properties a component receives by using destructuring.

Example

The component knows it only need thecolor property, so in the function definition, it only specifies that:

function Car({color}) {  return (    <h2>My car is {color}!</h2>  );}createRoot(document.getElementById('root')).render(  <Car brand="Ford" model="Mustang" color="red" year={1969} />);

Run Example »

Note: React uses curly brackets to destructure props:{color}.


You can also destruct the properties you need inside the component.

This way, the component receives all the properties, but the destructuring makes sure it only uses the ones it needs.

Example

The component receives all the properties, but uses destructuring to limit the properties inside the component.

function Car(props) {  const {brand, model} = props;  return (    <h2>I love my {brand} {model}!</h2>  );}createRoot(document.getElementById('root')).render(  <Car brand="Ford" model="Mustang" color="red" year={1969} />);

Run Example »



Destructuring...rest

When you don't know how many properties you will receive, you can use the...rest operator.

Meaning: you can specify the properties you need, and the rest will be stored in an object.

Example

The component specifies the color and the brand, but the rest is stored in an object like this:
{ model: "Mustang", year: 1969 }.

function Car({color, brand, ...rest}) {  return (    <h2>My {brand} {rest.model} is {color}!</h2>  );}createRoot(document.getElementById('root')).render(  <Car brand="Ford" model="Mustang" color="red" year={1969} />);

Run Example »


Default Values

With Destructuring, you can set default values for props.

If a property has no value, the default value will be used.

Example

Set the default color value to "blue":

function Car({color = "blue", brand}) {  return (    <h2>My {color} {brand}!</h2>  );}createRoot(document.getElementById('root')).render(  <Car brand="Ford" />);

Run Example »




×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp