Hello community.
I want to find some resources for scaling elm application, but had not much time about it.
In a SPA (single page application) the app is separated into multiple views. Then it must have some global state and some local?
In the use case, e.x. i want to have two tabs, to choose between them i want a helper function and not a global state. How can this be achieved.
Resources are welcome.
I do not want to have a global model (used with modules in js) for all instances.
lydell, You mentioned there’s just one model, so you might answer my question as well, I wonder if is it possible or advisable to have two or more models in the same application, each one of them dealing its own thing and updating its own properties without interfering with another model?