Redux メモ

Redux
Reactの課題である、ステートの管理を実現する

Storeのステートツリー

Redux data flow
Action Creators -> Actions -> Middleware -> Reducer -> Store -> Views -
    ↑                                                                 ↓
    -------------------------------------------------------------------

AC A M R S V

actions は 起こること を表す reducer は action を通して state を update する

Actions type: を持つ Javascript