7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
import { atom } from 'jotai'
|
|
|
|
// Store tabs menu active state
|
|
export const activeTabThreadRightPanelAtom = atom<string | undefined>(
|
|
'assistant'
|
|
)
|