asap.it/app/lib/stores/chat.ts
2024-12-14 00:37:18 -05:00

7 lines
124 B
TypeScript

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