'use client'; import { Plus, Settings, RefreshCw, Sparkles } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; interface PluginsHeaderProps { onRefresh: () => void; enabledCount: number; totalCount: number; } export function PluginsHeader({ onRefresh, enabledCount, totalCount }: PluginsHeaderProps) { return (
Administra las extensiones de tu CMS
Plugins Activos
{enabledCount}
Total Instalados
{totalCount}
En Desarrollo
{totalCount - 1}