import { X } from "lucide-react"; import type { Comment, User } from "../types"; import { CommentList } from "./CommentList"; interface CommentPanelProps { open: boolean; onClose: () => void; author: User; createdAt: string | Date; comments: Comment[]; mounted: boolean; } export function CommentPanel({ open, onClose, author, createdAt, comments, mounted }: CommentPanelProps) { return ( <> {/* 横屏评论面板:并排分栏 */} {/* 竖屏评论面板:bottom sheet */} > ); }