Skip to content

Commit

Permalink
updating the informations needed when adding a root node to a tree in…
Browse files Browse the repository at this point in the history
… react-devtools overview doc (#19979)

Co-authored-by: Idriss AITHAFID <Idriss.AITHAFID@um6p.ma>
  • Loading branch information
IDrissAitHafid and Idriss AITHAFID authored Oct 8, 2020
1 parent 4ead6b5 commit 6eca8ef
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/react-devtools/OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
```

Expand Down

0 comments on commit 6eca8ef

Please sign in to comment.