CodeRED-Astra/web-app/src/app/index.jsx

12 lines
273 B
JavaScript

import React from "react";
import ChatLayout from "src/components/layouts/chat-layout";
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;