feat: implement chat interface and registration modal

This commit is contained in:
2025-08-13 17:07:59 +02:00
parent bfa70ef14e
commit 5ccc6f2672
7 changed files with 212 additions and 21 deletions

View File

@@ -1,10 +1,11 @@
import "./App.css";
import Layout from "./layout/Layout";
import MainChat from "./components/MainChat";
function App() {
return (
<Layout>
<h1>Hello World</h1>
<MainChat />
</Layout>
);
}