I currently working on a smaller project where I start to do some user management. There are plenty of options, but I wanted to follow good code practices.
Usually is it better to store user profile information in the store (Ngrx) or should I use the localStorage for that.
interface Profile {
nickname: String;
profileImage: String;
slogan: String;
}
When should I use the localStorage instead of the ngrx store?
Thank you in advance. Hope this question is not too general.