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