Introduction
Redux selectors help you get specific data from your app's state easily and clearly.
When you want to get user info from the app state to show on the screen.
When you need to get a list of items filtered by some rule.
When you want to avoid repeating code to get the same data in many places.
When you want to keep your components simple and focused on showing UI.
When you want to improve app performance by avoiding unnecessary updates.