* feat: adding create bot functionality Signed-off-by: James <james@jan.ai> * update the temperature progress bar Signed-off-by: James <james@jan.ai> * chore: remove tgz Signed-off-by: James <james@jan.ai> * update core dependency Signed-off-by: James <james@jan.ai> * fix e2e test Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai>
11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { atom } from 'jotai'
|
|
|
|
/**
|
|
* Stores expand state of conversation container. Default is true.
|
|
*/
|
|
export const leftSideBarExpandStateAtom = atom<boolean>(true)
|
|
|
|
export const rightSideBarExpandStateAtom = atom<boolean>(false)
|
|
|
|
export const showRightSideBarToggleAtom = atom<boolean>(true)
|