This commit is contained in:
NotII
2025-03-08 05:30:23 +00:00
parent 5fb2575922
commit dbd65415d5
3 changed files with 296 additions and 54 deletions

View File

@@ -2,7 +2,7 @@
import { useEffect } from "react";
import { useRouter } from "next/navigation";
import ChatList from "@/components/dashboard/ChatList";
import ChatTable from "@/components/dashboard/ChatTable";
import Dashboard from "@/components/dashboard/dashboard";
import { MessageCircle } from "lucide-react";
@@ -30,7 +30,7 @@ export default function ChatsPage() {
</h1>
</div>
<ChatList />
<ChatTable />
</div>
</Dashboard>
);