import { CommentsList } from './comments-list'; import { CreateComment } from './create-comment'; type CommentsProps = { discussionId: string; }; export const Comments = ({ discussionId }: CommentsProps) => { return (