App
App
- You
Far off component(s) needs to know about an update? No problem. The update is sent to the store and any other connected components can see the change and make the necessary changes if needs be
Redux allows us to easily share data between components that need to know about it
state = {
name: 'Jonathan',
pianos: {
has: true,
count: 3
}
}
4