import React from "react"; import { Metadata } from "next"; import ChatList from "@/components/dashboard/ChatList"; export const metadata: Metadata = { title: "Customer Chats", description: "Manage conversations with your customers", }; export default function ChatsPage() { return (

Customer Chats

); }