import { atom } from "recoil"; export const $searchQuery = atom({ key: "SEARCH_QUERY", default: "", }); export const $jwtToken = atom({ key: "JWT_TOKEN", default: null, }); // conversation id export const $selectedConversation = atom({ key: "SELECTED_CONVERSATION", default: null, }); // new convo page trigger export const $newConvoPage = atom({ key: "NEW_CONVO_PAGE", default: false, });