Redux 用語 Action: 状態を変えるためのコマンド (コマンドパターン) Reducer: 古い State と Action から新しい State を作る関数 Store: action を受け取り Reducer を実行して State を返す。Store は reducer から作る。 store.dispatch(action) で store に action を送る。 createStore(reducer) を使って reducer から Store を生成する。 構成 もしかして他の react-redux プロジェクトでも使われるかも知れないのでディレクトリ構成を書く。 components: 見た目だけの静的な Representational Component (カスタム HTML タグ) を置く。 Component は props を受け取りタグを返
