Using Angular 9 and NGRX on a component I need to display:
I created a Post State:
export interface PostState extends EntityState<Post> { }
Questions
If the component needs Recent Posts, Top Posts, Tags and QueryString should I have 4 states?
Do I need 2 Post States (Recent and Top) if what differs is how they are loaded from the database (maybe using Effects)?
How to wrap all states in a Component's state?