WIP chat bubble

This commit is contained in:
2024-09-25 01:41:03 +02:00
parent 4a410b375f
commit 4eea9d1f2c
6 changed files with 62 additions and 27 deletions

View File

@ -198,3 +198,8 @@ export type Chat = {
message: string
createdAt: Date
}
export type ChatMessage = {
character: Character
message: string
}