Loading problem…
Build a WhatsApp Chat Interface component in React that allows users to send and display messages.
interface Message {
id: number;
text: string;
sender: 'user' | 'other';
timestamp: Date;
}// Initial messages
const initialMessages: Message[] = [
{ id: 1, text: 'Hey! How are you?', sender: 'other', timestamp: new Date() },
{ id: 2, text: 'I am doing great!', sender: 'user', timestamp: new Date() },
];