16 lines
441 B
JavaScript
16 lines
441 B
JavaScript
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;
|