CodeRED-Astra/web-app/src/app/index.jsx
JK-le-dev 7785047976 feat(file input): adding feature to add and remove files
Next up is to create a seperate menu that will show all the files.
Probably as a seperate frame. Needs to be scrollable and can use similar
ui as before
2025-10-19 04:32:32 -05:00

13 lines
284 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></div>
</div>
);
}
export default App;