pure store:具有类型安全性的微小的不变商店 源码
纯店 只需编辑应用程序的状态即可。 pure-store是一种快速,简单,不变的存储,可让您直接(即必须)更新状态。 它也可以很好地与打字稿一起使用。 与Redux的比较 带React挂钩 pure-store可以在没有React的情况下使用,但是如果您正在使用React,则可以使用usePureStore挂钩。 我们可以从上图创建简单的计数器,如下所示: import createStore from "pure-store/react" const store = createStore ( { count : 0 } ) export default ( ) => { cons
文件列表
pure-store-master.zip
(预估有个12文件)
pure-store-master
.gitignore
73B
package.json
1KB
src
react.test.tsx
5KB
index.test.ts
4KB
index.ts
1KB
react.ts
778B
.travis.yml
138B
LICENSE
1KB
暂无评论