mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-09 07:42:39 +02:00
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { atom } from "jotai";
|
|
|
|
type ActiveChathatUIState = {
|
|
isChatPannelOpen: boolean;
|
|
};
|
|
|
|
export const activeChathatUIAtom = atom<ActiveChathatUIState>({
|
|
isChatPannelOpen: false,
|
|
});
|