feat: Initialize Electron application with core backend, frontend chat/login UI, and IPC for crypto and link previews.

This commit is contained in:
bryan
2025-12-31 14:26:27 -06:00
parent b26a1d0b4b
commit f531301863
7 changed files with 324 additions and 167 deletions

View File

@@ -27,7 +27,10 @@ const Chat = () => {
activeChannel={activeChannel}
onSelectChannel={setActiveChannel}
/>
<ChatArea channelId={activeChannel} />
<ChatArea
channelId={activeChannel}
channelName={channels.find(c => c.id === activeChannel)?.name || activeChannel}
/>
</div>
);
};