mirror of
https://github.com/anonklub/anonklub.git
synced 2026-01-09 18:07:55 -05:00
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
'use client'
|
|
import { ErrorContainer } from '@components'
|
|
|
|
export default function Error({
|
|
error,
|
|
}: {
|
|
error: Error & { digest?: string }
|
|
}) {
|
|
return <ErrorContainer message={error.message} />
|
|
}
|