cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

examples/hackernews/app/error.tsx

7lines · modecode

1'use client'
2
3import ErrorPlaceholder from 'components/error-placeholder'
4
5export default function Error({ error }) {
6 return <ErrorPlaceholder error={error} />
7}
8