SurfSense/surfsense_web/atoms/chats/ui.atoms.ts
2025-11-17 08:10:12 +02:00

9 lines
187 B
TypeScript

import { atom } from "jotai";
type ActiveChathatUIState = {
isChatPannelOpen: boolean;
};
export const activeChathatUIAtom = atom<ActiveChathatUIState>({
isChatPannelOpen: false,
});