organize seach space apis

This commit is contained in:
thierryverse 2025-11-12 16:22:30 +02:00
parent 43362a383e
commit 78ab020d80
15 changed files with 154 additions and 42 deletions

View file

@ -0,0 +1,9 @@
import { atom } from "jotai";
type ChatUIState = {
isChatPannelOpen: boolean;
};
export const chatUIAtom = atom<ChatUIState>({
isChatPannelOpen: false,
});