This commit is contained in:
2025-09-06 12:10:35 +03:00
Unverified
parent 598795252f
commit 7f0d2b66f4
2 changed files with 8 additions and 19 deletions
@@ -1,13 +0,0 @@
import { LeftPanel } from "./LeftPanel";
import { RightPanel } from "./RightPanel";
export function ChatInterface() {
return (
<div id="chat-interface">
<div className="all-container">
<LeftPanel />
<RightPanel />
</div>
</div>
);
}
+8 -6
View File
@@ -1,11 +1,13 @@
import { ChatInterface } from "../components/chat/ChatInterface";
import { CropperDialog } from "../components/profile/CropperDialog";
import { LeftPanel } from "../components/chat/LeftPanel";
import { RightPanel } from "../components/chat/RightPanel";
export default function ChatScreen() {
return (
<>
<ChatInterface />
<CropperDialog />
</>
<div id="chat-interface">
<div className="all-container">
<LeftPanel />
<RightPanel />
</div>
</div>
);
}