SurfSense/surfsense_web/stores/chat/chat-ui.atom.ts
2025-11-11 04:02:04 +02:00

9 lines
160 B
TypeScript

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