bolt.new/packages/bolt/app/lib/stores/chat.ts
2024-08-14 11:08:52 +02:00

8 lines
124 B
TypeScript

import { map } from 'nanostores';
export const chatStore = map({
started: false,
aborted: false,
showChat: true,
});