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

12 lines
266 B
JavaScript

import React from "react";
import ChatLayout from "src/components/layouts/chat-layout";
function App() {
return (
<div className="dark min-h-screen bg-gray-950 text-white flex justify-center pt-12">
<ChatLayout />
</div>
);
}
export default App;