React Recoil
๊ฐ์
RecoilRoot
Atom
// atoms.ts
export const textstate = atom({
key: "textState",
// unique ID (with respect to other atoms/selectors)
default: "",
// default value (aka initial value)
})Hooks
Selector
Last updated