Fork me on GitHub
#reagent
<
2018-08-09
>
abdullahibra14:08:37

hi guys when i make (def app-state (reagent/atom {}) is this version for each client ? or just one app-state for full app ? so it's a one version for all clients?

manutter5114:08:08

The (def app-state (reagent/atom {})) is code that runs on the client, so each client will have it's own app-state.

abdullahibra14:08:09

@manutter51 good, thanks 🙂