bolt.new/packages/bolt/app/lib/stores/chat.ts

8 lines
124 B
TypeScript
Raw Normal View History

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