keys-note.txt 609 B

123456789101112
  1. testing push at source.sidali.sixsenz.net
  2. It's pretty simple when you think about it:
  3. Store - Is what holds all the data your application uses.
  4. Reducer - is what manipulates that data when it recieves an action.
  5. Action - is what tells reducer to manipulate the store data, it carries the name and (not required) some data.
  6. Reducer is usually in a format of a switch statement,
  7. that switches between all possible Actions (Cases) and
  8. then manipulates the Store data based on action.
  9. When a reducer data changes within the redux, the properties in your components are changed and then the re-render ocurrs.