Files
vdkch/futa-clone/src/components/Greeting.jsx
2025-02-10 15:53:52 +03:00

9 lines
229 B
JavaScript

function Greeting({ show }) {
return show ? (
<div id="greeting">
<h2>Отправьте первое сообщение, чтобы начать</h2>
</div>
) : null;
}
export default Greeting;