mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-14 00:31:12 +10:00
6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
|
|
import { ICurrentUser } from "@/features/user/types/user.types";
|
|
|
|
export const currentUserAtom = atomWithStorage<ICurrentUser | null>("currentUser", null);
|