mirror of
https://github.com/docmost/docmost.git
synced 2025-11-18 06:21:10 +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);
|