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