5 lines
220 B
TypeScript
5 lines
220 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
|
|
import { ICurrentUserResponse } from "@/features/user/types/user.types";
|
|
|
|
export const currentUserAtom = atomWithStorage<ICurrentUserResponse | null>("currentUser", null);
|