This commit is contained in:
2026-04-09 11:23:26 +02:00
parent c5bc817efe
commit 9baab3d3bc
18 changed files with 489 additions and 37 deletions

View File

@@ -0,0 +1,11 @@
import {signal} from '@angular/core';
export class MessageBoxViewModel {
onMessageSend: (message: string) => void
constructor(onMessageSend: (message: string) => void) {
this.onMessageSend = onMessageSend
}
message = signal<string>("")
}