mirror of
https://github.com/docmost/docmost.git
synced 2026-05-16 05:44:04 +08:00
1412f1d982
* work on groups ui * move settings to its own page * other fixes and refactoring
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);
|