mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
'use client'
|
|
|
|
import ErrorPlaceholder from 'components/error-placeholder'
|
|
|
|
export default function Error({ error }) {
|
|
return <ErrorPlaceholder error={error} />
|
|
}
|