import * as React from 'react' import { useTranslation } from 'react-i18next' const DefaultCards = React.memo(() => { const renderArray = Array.from({ length: 36 }) return ( <> { renderArray.map((_, index) => (
)) } ) }) const Empty = () => { const { t } = useTranslation() return ( <>
{t('newApp.noAppsFound', { ns: 'app' })}
) } export default React.memo(Empty)