satupeta-main/shared/state/user.ts
2026-02-23 12:21:05 +07:00

4 lines
93 B
TypeScript
Executable File

import { atom } from "jotai";
export const userAtom = atom<{ email: string } | null>(null);