import { atom } from "jotai"; type ActiveChathatUIState = { isChatPannelOpen: boolean; }; export const activeChathatUIAtom = atom({ isChatPannelOpen: false, });