React分派器
去做
安装
npm install --save @redneckz/react-dispatcher
如何
import React from 'react' ;
import { useDispatcher } from '@redneckz/react-dispatcher' ;
const initialState = { count : 1000 } ;
/**
* Local store. No need in "Lifting state up"
*/
function reducer ( state , { type } ) {
switch ( type ) {
case 'INC' :
return { count : state . count + 1 } ;
case 'DEC' :
return {
1