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