'use client'
import { cn } from '@langgenius/dify-ui/cn'
import { useTranslation } from 'react-i18next'
import { SkeletonContainer, SkeletonPoint, SkeletonRectangle } from '@/app/components/base/skeleton'
const PluginCardSkeleton = () => (
)
type PluginListSkeletonProps = {
contentFrameClassName: string
}
const PluginListSkeleton = ({
contentFrameClassName,
}: PluginListSkeletonProps) => {
const { t } = useTranslation()
return (
{Array.from({ length: 6 }, (_, index) => (
))}
)
}
export default PluginListSkeleton