Created
August 23, 2016 10:00
-
-
Save aykutyaman/0b93af54e88b472be169b2666ab8e545 to your computer and use it in GitHub Desktop.
if complexFormProps and items come from the same store, typing in the ComplexForm might lead to store updates, and each store update leads to re-rendering the entire <ul>.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<ComplexForm props={this.props.complexFormProps} /> | |
<ul> | |
<li prop={this.props.items[0]}>item A</li> | |
...1000 items... | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment