jan/web/app/_helpers/atoms/LeftSideBarExpand.atom.ts
2023-10-20 11:29:10 +07:00

7 lines
167 B
TypeScript

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