Files
bodyshop/client/src/components/chat-window/chat-window.component.jsx
2020-02-10 13:52:02 -08:00

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>
);
}