mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
import { atom } from 'jotai';
|
|
import type { SessionContextValue } from 'next-auth/react';
|
|
|
|
export const sessionAtom = atom<SessionContextValue<true> | null>(null);
|