This commit is contained in:
yenminh269 2025-10-18 17:46:54 -05:00
commit 5a9da85f07
31 changed files with 2831 additions and 54 deletions

16
web-app/src/app/index.jsx Normal file
View file

@ -0,0 +1,16 @@
import React from "react";
<<<<<<< HEAD:src/app/index.jsx
import ChatLayout from "../components/ui/ChatLayout";
=======
import ChatLayout from "src/components/layouts/chat-layout";
>>>>>>> cb9cff44215b6de81ed81ef2a1c6abe090fbf1b1:web-app/src/app/index.jsx
function App() {
return (
<div className="min-h-screen bg-slate-900 text-white flex items-center justify-center p-6">
<ChatLayout />
</div>
);
}
export default App;