updating the informations needed when adding a root node to a tree in react-devtools overview doc (#19979)

Co-authored-by: Idriss AITHAFID <Idriss.AITHAFID@um6p.ma>
This commit is contained in:
IDrissAitHafid
2020-10-08 13:46:15 +01:00
committed by GitHub
parent 4ead6b5305
commit 6eca8eff08

View File

@@ -49,20 +49,22 @@ Later operations will reference strings by a one-based index. For example, `1` w
#### Adding a root node
Adding a root to the tree requires sending 4 numbers:
Adding a root to the tree requires sending 5 numbers:
1. add operation constant (`1`)
1. fiber id
1. element type constant (`8 === ElementTypeRoot`)
1. element type constant (`11 === ElementTypeRoot`)
1. profiling supported flag
1. owner metadata flag
For example, adding a root fiber with an id of 1:
```js
[
1, // add operation
1, // fiber id
8, // ElementTypeRoot
11, // ElementTypeRoot
1, // this root's renderer supports profiling
1, // this root has owner metadata
]
```