Spaces:
Sleeping
Sleeping
| '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 ( | |
| <Card> | |
| <CardHeader> | |
| <CardTitle>Bir hata olustu</CardTitle> | |
| </CardHeader> | |
| <CardContent className="space-y-3"> | |
| <p className="text-sm text-muted-foreground">{error.message}</p> | |
| <Button onClick={reset}>Tekrar dene</Button> | |
| </CardContent> | |
| </Card> | |
| ); | |
| } | |