How do I persist each User's data in their own separate account?

Viewed 27

I am building an application using Infinitered Ignite CLI boilerplate, which uses mobx-state-tree for state management. Currently, it is persisting every user's state, but into a global tree, where the items I create while logged in/authenticated in one account are being loaded for all others.

How should I "silo" each user's state into their own account, such that they are private?

0 Answers
Related