Files
freeCodeCamp/guide/english/certifications/front-end-libraries/react/override-default-props/index.md
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

41 lines
762 B
Markdown

---
title: Override Default Props
---
# Override Default Props
---
## Problem Explanation
This challenge has you override the default value of props `quantity` for the Items component. Where default value of `quantity` is set to `0`.
```jsx
const Items = (props) => {
return <h1>Current Quantity of Items in Cart: {props.quantity}</h1>
}
Items.defaultProps = {
quantity: 0
}
```
---
## Hints
### Hint 1
To override a default props value, the syntax to be followed is
```jsx
<Component propsName={Value}/>
```
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
Following the Syntax, the following code should be declared below the given code
```jsx
<Items quantity={50}/>
```
This will override value `0` to `50`
</details>