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