VirtWeb/virtweb_frontend/src/routes/NotFound.tsx

15 lines
382 B
TypeScript
Raw Normal View History

2023-09-04 12:11:56 +00:00
import { Button } from "@mui/material";
import { RouterLink } from "../widgets/RouterLink";
export function NotFoundRoute(): React.ReactElement {
return (
<div style={{ textAlign: "center" }}>
2023-09-04 15:26:31 +00:00
<h1>404 Not found</h1>
<p>The page you requested was not found!</p>
2023-09-04 12:11:56 +00:00
<RouterLink to="/">
2023-09-04 15:26:31 +00:00
<Button>Go back home</Button>
2023-09-04 12:11:56 +00:00
</RouterLink>
</div>
);
}