jotai:React用于React的原始,灵活的状态管理

时间:2024-02-23 19:56:54
【文件属性】:

文件名称:jotai:React用于React的原始,灵活的状态管理

文件大小:1.67MB

文件格式:ZIP

更新时间:2024-02-23 19:56:54

react atomic management state hacktoberfest

Jotai在日语中的发音为“ joe-tie”,意思是“州”。 您可以尝试以下方式进行现场演示: | 。 Jotai与Recoil有何不同? 简约的API 没有字符串键 面向TypeScript 原子代表状态。 您需要指定一个初始值,该初始值可以是原始值,例如字符串和数字,对象和数组。 您可以根据需要创建任意数量的基本原子。 import { atom } from ' jotai ' const countAtom = atom ( 0 ) const countryAtom = atom ( ' Japan ' ) const citiesAtom = atom ([ ' Tokyo ' , ' Kyoto ' , ' Osaka ' ]) const mangaAtom = atom ({ ' Dragon Ball ' : 1984 , ' One Piece ' : 1997 , Naruto : 1999 }) 您只能在此组件树下使用原子。 import { Provider } from ' jotai ' const Root = () => ( <


网友评论