Files
pca-pijac/legacy-frontend/pages/_error.js

9 lines
161 B
JavaScript

export default function Error(props) {
return (
<>
<h2>Oops, there is an error!</h2>
<pre>{JSON.stringify(props, null, 2)}</pre>
</>
)
}