summaryrefslogtreecommitdiff
path: root/atoms.ts
blob: fe5cebd3a5d05c1540bb43dce1d9b00cd37ed7aa (plain)
1
2
3
4
5
import { atom } from "jotai"

export const selectedUserIdsAtom = atom<number[]>([])
export const selectedModeAtom = atom<"IM" | "ENG">("IM")