I'm a newbie to React/Redux and I could use your advice on how to structure the following data models in my react app.
I have the following models:
Users
Skills (id, title)
UserSkills (user_id, skill_id)
I want to create a component that shows a User's Skills which I would get from my API /user_skills
which would return (user_id, skill_id).
Should I update my API to include the extra fields I need to render the component like Skill.title or should I somehow, with Redux, also store Skills in the Redux store, and the have UserSkills somehow find the Skill.Title from the Redux store and if it doesn't exist, go fetch the title? How can I best structure this in Redux and how can I get started?