fixing some wording on problems to be solved

This commit is contained in:
Ken
2019-03-04 11:46:17 -08:00
parent 547e268bc8
commit 630d336355
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ In a real application, these functions are composed. It looks more like this:
1. Data needs to be passed down from component to component via props. Even when some components do not need to know about some data. This is a problem called **props drilling**
2. There is a lack of coordination of changes that can happen to the data
2. Shared data can be changed by various actors (user interaction, updates from server), and there is no coordination of these changes
Even in our simple application, we saw this problem. For example, `<TodoList>` has this props interface:

View File

@@ -17,7 +17,7 @@ In this step, we will look at solving the problems of complex application (as me
As a reminder, the problem that we want to address are:
1. Data needs to be passed down from component to component via props. Even when some components do not need to know about some data.
2. There is a lack of coordination of changes that can happen to the data
2. Shared data can be changed by various actors (user interaction, updates from server), and there is no coordination of these changes
Redux is an implementation of the Flux architectural pattern: