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