feat: im1

This commit is contained in:
KofK
2025-02-10 15:53:52 +03:00
parent 435b7f3fca
commit 0c81c88228
66 changed files with 4723 additions and 16262 deletions

View File

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