react nano state:可以在React树之外的组件之间共享的快速状态 源码
纳米状态-React的可共享状态 可以在React树之外的组件之间共享的快速状态。 通过让React仅在使用该值的特定组件之间进行协调,可以实现快速更新。 受的想法启发-状态订阅(原子)减去所有其余部分。 只需一个状态值就可以共享并让组件挂接到其中,而无需更新整个子树。 例子 import { createValueContainer , useValue } from "react-nano-state" ; // Value container can be exported and reused in any part of the tree. const searchContainer = createValueContainer ( "Type the search" ) ; const SearchInput = ( ) => { // All we need to s
用户评论