import { atom } from 'nanostores'; import type { ChatContents } from '~/lib/persistence/chats'; export class ChatStore { currentChat = atom(undefined); started = atom(false); aborted = atom(false); showChat = atom(true); } export const chatStore = new ChatStore();