import { useAtom } from 'jotai' import { atomWithStorage } from 'jotai/utils' export const userSingleHopAtom = atomWithStorage('pcs:single-hop', false) export function useUserSingleHopOnly() { return useAtom(userSingleHopAtom) }