I'm new to react and I'm trying to learn about redux.
I have a simple demo app where user should login. After login he can see a list of movies, can click on a single movie to see the details, comments, actors etc.. and can add a movie to basket. It's a simple app with a few components.
Which components should I connect to Redux? I have seen people connect every single compoment (in my example that would mean that I should write actions,reduces etc.. for component that fetches a list of movies comments and actors) but that feels wrong to me.. As I see it I have user data and movies added to the basket as global data and only components that need that data should be connected to Redux?
Am I wrong? Should I connect everything with redux?
Thank you