You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Almost all of the components in this app are pure.
We should use PureRenderMixin
Also, it would be interesting to benchmark various UI changes to see whether this makes a difference. It still feels a bit slow on mobile.
Maybe doing "onChange -> rerender app" is slow.
Try using setprops on the outer component (forcing the update against PureRenderMixin) instead.
"Calling React.renderComponent() again on the same node is the preferred way to update a root-level component."
Almost all of the components in this app are pure.
We should use PureRenderMixin
Also, it would be interesting to benchmark various UI changes to see whether this makes a difference. It still feels a bit slow on mobile.
Maybe doing "onChange -> rerender app" is slow.
Try using setprops on the outer component (forcing the update against PureRenderMixin) instead.
"Calling React.renderComponent() again on the same node is the preferred way to update a root-level component."
http://facebook.github.io/react/docs/component-api.html#forceupdate
The text was updated successfully, but these errors were encountered: