2019 | OriginalPaper | Chapter
19. Using a Redux Data Store
Published in:
Pro React 16
Abstract
A data store moves the application’s data outside of the React component hierarchy. Using a data store means that the data doesn’t have to be lifted up to the top-level component and doesn’t have to thread props to ensure access to that data where it is needed. The result is a more natural application structure, which leaves the React components to focus on what they are good at, which is rendering content for the user.