Chapter 11Managing State in React
As weâve built up the React page in our app, weâve been passing properties and handlers up and down the DOM tree to allow our data to be shared between components. This is somewhat complicated and error-prone. We can use a global data store to keep us from having to do all this property passingâall weâll need to do is make sure each component subscribes to the global store and sends actions to it in order to change state. React comes with built-in features to support this kind of global data sharing, and it contains hook methods that we can use in our functional components to access this data.
To see how global data can help, in this chapter weâre going to add a new feature to our concert page that ...
Get Modern Front-End Development for Rails, 2nd Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.