webapp/src/stores/inbox.ts

5 lines
122 B
TypeScript
Raw Normal View History

2022-10-05 08:55:26 +00:00
import { atom } from 'nanostores'
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-09 17:57:35 +00:00
export const chats = atom<Chat[]>([])