Skip to content

Instantly share code, notes, and snippets.

@aykutyaman
Created August 23, 2016 10:00
Show Gist options
  • Save aykutyaman/0b93af54e88b472be169b2666ab8e545 to your computer and use it in GitHub Desktop.
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>.
<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