some ui updates

This commit is contained in:
Samuel Andert
2023-07-21 14:48:44 +02:00
parent 5be272d1f2
commit 207b154035
7 changed files with 109 additions and 81 deletions

View File

@ -0,0 +1,8 @@
interface Message {
message: string;
date: Date;
sender: string;
type: string;
}
export default Message;