import MaterialIcon from '@/shared/components/material-icon' import { useTranslation } from 'react-i18next' function ReviewPanelEmptyState() { const { t } = useTranslation() return (

{t('no_comments_or_suggestions')}

{t('no_one_has_commented_or_left_any_suggestions_yet')}

) } export default ReviewPanelEmptyState