'use client'; import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { Icons } from '@/components/icons'; export default function PieStatsError({ error }: { error: Error }) { return ( Error Failed to load pie statistics: {error.message} ); }