FIXME Buggy send message

This commit is contained in:
Zhongheng Liu 2023-12-21 17:20:37 +02:00
commit 1fbd955652
No known key found for this signature in database
5 changed files with 37 additions and 15 deletions

View file

@ -9,5 +9,5 @@ export const Message = (
}
): React.ReactElement<{ sender: string; text: string; }> => {
return (<p>Message from {sender}: {text}</p>);
return (<p>Message from {sender} @ {}: {text}</p>);
};