import 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 ( <>