mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-28 18:36:23 +02:00
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
|
|
import { atom } from "jotai";
|
||
|
|
|
||
|
|
type ChatUIState = {
|
||
|
|
isChatPannelOpen: boolean;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const chatUIAtom = atom<ChatUIState>({
|
||
|
|
isChatPannelOpen: false,
|
||
|
|
});
|