mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-07 14:52:39 +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,
|
||
|
|
});
|