Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,16 +364,16 @@ push(cursor, value, fiber)

**ReactFiberClassComponent.js**

this is incharge of handling how the react components are updated:
This is in charge of handling how the react components are updated:

the outer function incharge of sending props to the internal state is **applyDerivedStateFromProps**. Which handles
Merging of the partial state and the previous state. Where memoized state is compared with the previous and using methods like Redux object.assign.
The outer function in charge of sending props to the internal state is **applyDerivedStateFromProps**. This handles
merging of the partial state and the previous state. Where memoized state is compared with the previous and using methods like Redux object.assign.
It assigns a new state. There is a if case present that if it's not in a updatequeue then basestate(initial state) = memiozed state.


The structure of this is a lot like using Redux(payloads, assigning)

There is a main classComponentUpdater which is contains various functions:
There is a main classComponentUpdater which contains various functions:

```

Expand Down