{
const { user } = useContext(Context);
+ const chatProps = useMultiChatLogic(
+ projectId,
+ user.username,
+ user.hashed_password
+ );
+
if (!user) {
return
;
} else {
return (
-
+
- {user.first_name}'s chats...
+
+
+
+
+
+
+
+
+
(
+
+ )}
+ style={{
+ position: "absolute",
+ top: "calc(10vh + 64px)",
+ left: "10vw",
+ height: "calc(80vh - 64px)",
+ width: "80vw",
+ border: "1px solid black",
+ boxShadow:
+ "rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset",
+ }}
+ />
+
);
}