What are Redux selectors and Why to use them? Technology Community › Category: Redux › What are Redux selectors and Why to use them? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Selectors are functions that take Redux state as an argument and return some data to pass to the component. For example, to get user details from the state: const getUserData = state => state.user.data;