Recoil
当たり前だけど<RecoilRoot>がなければ怒られる
同じキーを設定したら上書きされる
当たり前だけど下記は怒られる
code:js
const counter = atom({
key: "conterConter",
default: atom({
key: "conter",
default: 100,
}),
})
atomGenerator的な関数は可能
code:js
const counterAtomGenerator = () => {
id++
return atom({
key: conter-${id},
default: id ** 2,
})
}