19 lines
341 B
TypeScript
19 lines
341 B
TypeScript
'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>
|
||
|
|
)
|
||
|
|
}
|