deno.land / x / jotai@v1.8.4 / website / src / atoms / index.js
12345678910111213import { atom } from 'jotai';import { atomWithImmer } from 'jotai/immer';import { atomWithStorage } from 'jotai/utils';
export const menuAtom = atom(false);export const searchAtom = atom(false);export const helpAtom = atom(false);
export const textAtom = atom('hello');export const uppercaseAtom = atom((get) => get(textAtom).toUpperCase());export const darkModeAtom = atomWithStorage('darkModeDemo', false);export const countAtom = atomWithImmer(0);
Version Info