import React from 'react' import { useTranslation } from 'react-i18next' import { SkeletonContainer, SkeletonPoint, SkeletonRectangle, SkeletonRow, } from '@/app/components/base/skeleton' const ParentChunkCardSkelton = () => { const { t } = useTranslation() return (
) } ParentChunkCardSkelton.displayName = 'ParentChunkCardSkelton' export default React.memo(ParentChunkCardSkelton)