'use client' import { Provider, atom } from 'jotai' import { ReactNode } from 'react' type Props = { children: ReactNode } export default function JotaiWrapper({ children }: Props) { return {children} } export const currentPromptAtom = atom('') export const appDownloadProgress = atom(-1) export const searchingModelText = atom('') export const searchAtom = atom('') export const modelSearchAtom = atom('')