mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-08 23:32:40 +02:00
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
import { atom } from "jotai";
|
|
|
|
type ActiveChathatUIState = {
|
|
isChatPannelOpen: boolean;
|
|
};
|
|
|
|
export const activeChathatUIAtom = atom<ActiveChathatUIState>({
|
|
isChatPannelOpen: false,
|
|
});
|
|
export const activeChatIdAtom = atom<string | null>(null);
|