import React, { useState } from 'react'
import LevelBadge from '../xp/LevelBadge'
import CommentForm from './CommentForm'
function CommentItem({ comment, canReply, onReply, onDelete, onReport }) {
const [replying, setReplying] = useState(false)
return (
{emptyMessage}
} return (