File size: 289 Bytes
ed9ee96
 
 
 
 
 
 
 
 
a5b50e3
ed9ee96
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use client";
import ChatWindow from "./ChatWindow";


export default function Chat() {
  return (
    <div>
        <div className="flex justify-center m-3 gap-2">
          <div className="sm:w-[500px] w-full">
            <ChatWindow />
          </div>
        </div>
    </div>
  );
}