React瀑布 之上构建的React存储 基本 store.js import createStore from 'react-waterfall' const config = { initialState : { count : 0 } , actionsCreators : { increment : ( { count } ) => ( { count : count + 1 } ) , } , } export const { Provider , connect , actions } = createStore ( config ) App.js imp