import Comment from "./Comment"; function Comments({ user, loading }) { const comments = user?.comments ?? []; if (comments.length === 0) { return (

نظری ثبت نکرده‌اید.

); } return ( ); } export default Comments;