11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
import { HomeLink } from './homeLink';
|
|
|
|
export default function ErrorComponent() {
|
|
return (
|
|
<div>
|
|
<h1>Oops. Something went wrong. Please try later :(</h1>
|
|
<HomeLink />
|
|
</div>
|
|
);
|
|
}
|