How do you add/remove to a redux store generated with normalizr?
The following is directly from a post by the redux/normalizr creator here: So your state would look like: { entities: { plans: { 1: {title: ‘A’, exercises: [1, 2, 3]}, 2: {title: ‘B’, exercises: [5, 1, 2]} }, exercises: { 1: {title: ‘exe1’}, 2: {title: ‘exe2’}, 3: {title: ‘exe3’} } }, currentPlans: [1, 2] } … Read more