diegohaz / constate

React Context + State

Home Page:https://codesandbox.io/s/github/diegohaz/constate/tree/master/examples/counter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Preventing components from being recalled

omerdn1 opened this issue · comments

Component which are using the context provider will recalled on every state change. I’m aware that only DOM elements that really changed will get re-rendered but that is still a problematic issue because many components often have functions in them and they will be re-executed.

Did you tackle this issue?