2026-03-31 17:26:58 +07:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import { useTranslations } from 'next-intl'
|
|
|
|
|
|
|
|
|
|
export default function FilePageViolationEpmtyScreen() {
|
|
|
|
|
const t = useTranslations('Global');
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
className="violation-info"
|
|
|
|
|
>
|
|
|
|
|
<h4
|
2026-04-20 16:08:10 +07:00
|
|
|
className="violation-info-title not-selected-match"
|
2026-03-31 17:26:58 +07:00
|
|
|
>
|
|
|
|
|
{t('to-view-a-file-match-click-on-the-card-from-the-list')}
|
|
|
|
|
</h4>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|