'use client'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; export function ErrorBoundary({ error, reset }: { error: Error; reset: () => void }) { return ( Bir hata olustu

{error.message}

); }