SurfSense/surfsense_web/stores/chat/chat-ui.atom.ts

10 lines
160 B
TypeScript
Raw Normal View History

2025-11-11 04:02:04 +02:00
import { atom } from "jotai";
type ChatUIState = {
isChatPannelOpen: boolean;
};
export const chatUIAtom = atom<ChatUIState>({
isChatPannelOpen: false,
});