File size: 249 Bytes
0971cc4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"use client";

import React from "react";
import ChatPage from "@/components/chat/chat-page";

export default function Home() {
  const [chatId, setChatId] = React.useState<string>("");
  return <ChatPage chatId={chatId} setChatId={setChatId} />;
}