17 lines
354 B
TypeScript
17 lines
354 B
TypeScript
|
import { useRouteError } from "react-router-dom";
|
||
|
|
||
|
export default function ErrorPage() {
|
||
|
const error: any = useRouteError();
|
||
|
console.error(error);
|
||
|
|
||
|
return (
|
||
|
<div id="error-page">
|
||
|
<h1>Oops!</h1>
|
||
|
<p>Sorry, an unexpected error has occurred.</p>
|
||
|
<p>
|
||
|
<i>{error.statusText || error.message}</i>
|
||
|
</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|