import { atom } from 'jotai' /** * Stores expand state of conversation container. Default is true. */ export const leftSideBarExpandStateAtom = atom(true) export const rightSideBarExpandStateAtom = atom(false) export const showRightSideBarToggleAtom = atom(true)