react super context:围绕React Context API的小型包装器库可减少创建和使用上下文所需的样板代码数量 源码
超上下文React 一个围绕React Context API的小型包装库,可减少创建和使用上下文所需的样板代码量。 特征 创建没有样板的上下文 不再有嵌套的上下文提供程序 消费没有提供程序的上下文时发生错误,而不是静默失败 使用TypeScript构建 小捆装 安装 npm i react-super-context 之前和之后 前 // when using TypeScript, you must define an interface for the context's value to get proper type hints interface CounterContextModel { count : number ; increment : ( ) => void ; decrement : ( ) => void ; } // createContext e
下载地址
用户评论