* feat: add extesion settings Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
8 lines
222 B
TypeScript
8 lines
222 B
TypeScript
import { atom } from 'jotai'
|
|
|
|
import { SettingScreen } from '@/screens/Settings'
|
|
|
|
export const selectedSettingAtom = atom<SettingScreen | string>('My Models')
|
|
|
|
export const janSettingScreenAtom = atom<SettingScreen[]>([])
|