'use client' import { useTranslation } from 'react-i18next' import { Group } from '@/app/components/base/icons/src/vender/other' import Line from './line' import cn from '@/utils/classnames' const Empty = () => { const { t } = useTranslation() return (
{ Array.from({ length: 16 }).map((_, index) => (
11 && 'mb-0', )} >
)) }
{t('plugin.marketplace.noPluginFound')}
) } export default Empty