React作用塞 一个React库,用于组件之间的可插拔动作接口。 动机 如果要在React中开发复杂的GUI屏幕,则可能要从多个组件中调用一个组件中的交互或动作。 该库提供了一个可在组件之间使用的动作插件。 特征 TypeScript支持 零依赖 安装 yarn add react-action-plug 用法 import React from 'react' ; import { createActionPlug } from 'react-action-plug' ; // Define action plug type MyActions = { increment ( n : number ) : void ; reset ( ) : void ; } ; const { Boundary , useActionHandlers , useActions } = cr