11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
import React from "react";
|
|
|
|
export default function ChatWindowComponent({ toggleChatVisible }) {
|
|
return (
|
|
<div style={{ height: "300px" }}>
|
|
<button onClick={() => toggleChatVisible()}>hide</button> This is a chat
|
|
window!
|
|
</div>
|
|
);
|
|
}
|