import { atom } from 'jotai';

/**
 * Global Jotai atoms.
 * Keep atoms small and focused — compose them in hooks.
 */

/** Current search query typed by the user on HomeScreen */
export const searchQueryAtom = atom<string>('');

/** Controls whether the "words to fill" list is visible */
export const showPendingWordsAtom = atom<boolean>(false);
