-
-
Notifications
You must be signed in to change notification settings - Fork 4
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Make sure that the updates to the DOM are only reflected on the child that has changed instead of rendering the entire app from root again.
This is caused because the entire dom tree is built again instead of just the node that has changed.
Options
- This can be achieved by using a concept like cyclejs where the re-rendered child node is sent in a steamed fashion, and instead of the current React tree creation which just constructs
React.createElement
we could create class components that do this.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request