continue: change styles for matched table, add new block for empty select

This commit is contained in:
smanylov
2026-03-31 17:26:58 +07:00
parent 89506c222b
commit 8bb6097d90
6 changed files with 74 additions and 11 deletions
@@ -0,0 +1,19 @@
'use client'
import { useTranslations } from 'next-intl'
export default function FilePageViolationEpmtyScreen() {
const t = useTranslations('Global');
return (
<div
className="violation-info"
>
<h4
className="violation-info-title"
>
{t('to-view-a-file-match-click-on-the-card-from-the-list')}
</h4>
</div>
)
}