mirror of
https://github.com/harivansh-afk/asap.it.git
synced 2026-04-16 14:01:05 +00:00
7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
import { map } from 'nanostores';
|
|
|
|
export const chatStore = map({
|
|
started: false,
|
|
aborted: false,
|
|
showChat: true,
|
|
});
|