Skip to content

Commit

Permalink
styling message.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Celesca committed Nov 25, 2024
1 parent 71374c4 commit 5afd12e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions frontend/src/message.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ const Message = () => {

return (
<div className="flex h-screen bg-gray-100">
{/* Chat List */}
<ChatList contacts={contacts} onSelectChat={handleChatSelect} />

<div className="flex flex-1 pt-4">

<ChatList contacts={contacts} onSelectChat={handleChatSelect} />

{/* Chat Box */}
<ChatBox activeChat={activeChat} />
{/* Chat Box */}
<ChatBox activeChat={activeChat} />
</div>
</div>
);
};
Expand Down

0 comments on commit 5afd12e

Please sign in to comment.