bolt.new/app/lib/stores/chat.ts
2024-09-25 19:54:09 +01:00

8 lines
124 B
TypeScript

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