import { forwardRef, type HTMLAttributes } from "react";
import { cn } from "~/lib/utils";
type ChatMessageListProps = HTMLAttributes;
const ChatMessageList = forwardRef(
({ className, children, ...props }, ref) => (
{children}
),
);
ChatMessageList.displayName = "ChatMessageList";
export { ChatMessageList };