feat(chat): created basic chat layout
This commit is contained in:
parent
7d26bd750c
commit
8ba67f1080
10 changed files with 154 additions and 26 deletions
12
src/app/index.jsx
Normal file
12
src/app/index.jsx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import React from "react";
|
||||
import ChatLayout from "src/components/ui/ChatLayout";
|
||||
|
||||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue