id | sidebar_label | title | description | keywords | version | image | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
nested-destructuring |
Nested destructuring |
Nested Destructuring |
Nested destructuring | React Patterns, techniques, tips and tricks in development for Ract developer. |
|
Nested destructuring |
/img/reactpatterns-cover.png |
Destructuring also applies to objects nested in objects.
Without destructuring:
function setIndexFromRoute(props) {
const modalList = props.modalList
const pathname = props.location.pathname
// ...
}
Destructuring the nested props object.
function setIndexFromRoute(props) {
const { modalList, location: { pathname } } = props
// ...
}