import type { PrimitiveAtom } from 'jotai'; export const createAtomTuple = ( atom: PrimitiveAtom, value: T, ): [PrimitiveAtom, T] => [atom, value];