2022-11-13 06:41:04 +00:00
|
|
|
import { createSignal } from 'solid-js'
|
2022-11-09 17:57:35 +00:00
|
|
|
import type { Chat } from '../graphql/types.gen'
|
2022-10-05 08:55:26 +00:00
|
|
|
|
2022-11-13 06:41:04 +00:00
|
|
|
export const [chats, setChats] = createSignal<Chat[]>([])
|