redux是Flux的热重载工具。Actions:// Still using constants...import { INCREMENT_COUNTER, DECREMENT_COUNTER } from '../constants/ActionTypes';// But action creators are pure functions returning actionsexport function increment() {  return {    type: INCREMENT_COUNTER  };}export function decrement() {  return {    type: