I am new on React and Flux and I am making an app that will have an input (like the name or the title), and below a list of n things.
How should I handle the event listeners? I saw in the TODO example of flux (https://github.com/facebook/flux/blob/master/examples/flux-todomvc/) that they use one change listener and emit an event with all the store state on every change.
Is that ok for a real app? If not, what could I do?