2024-07-18 09:10:12 +00:00
|
|
|
import { map } from 'nanostores';
|
|
|
|
|
|
|
|
export const chatStore = map({
|
2024-08-01 14:54:59 +00:00
|
|
|
started: false,
|
2024-07-18 09:10:12 +00:00
|
|
|
aborted: false,
|
2024-08-14 09:08:52 +00:00
|
|
|
showChat: true,
|
2024-07-18 09:10:12 +00:00
|
|
|
});
|