mirror of
https://github.com/fromchat-messenger/web.git
synced 2026-09-22 19:15:08 +03:00
Clean up
This commit is contained in:
@@ -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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
import { ChatInterface } from "../components/chat/ChatInterface";
|
import { LeftPanel } from "../components/chat/LeftPanel";
|
||||||
import { CropperDialog } from "../components/profile/CropperDialog";
|
import { RightPanel } from "../components/chat/RightPanel";
|
||||||
|
|
||||||
export default function ChatScreen() {
|
export default function ChatScreen() {
|
||||||
return (
|
return (
|
||||||
<>
|
<div id="chat-interface">
|
||||||
<ChatInterface />
|
<div className="all-container">
|
||||||
<CropperDialog />
|
<LeftPanel />
|
||||||
</>
|
<RightPanel />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user