SurfSense/surfsense_web/atoms/chats/ui.atoms.ts

10 lines
187 B
TypeScript
Raw Normal View History

2025-11-15 02:07:20 +02:00
import { atom } from "jotai";
type ActiveChathatUIState = {
isChatPannelOpen: boolean;
};
export const activeChathatUIAtom = atom<ActiveChathatUIState>({
isChatPannelOpen: false,
});