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
13 lines
284 B
JavaScript
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;
|