mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
357 B
21 lines
357 B
import React from "react";
|
|
import Container from "../../components/Container";
|
|
import { useNav } from "../../util";
|
|
|
|
function Home() {
|
|
const navigate = useNav();
|
|
|
|
return (
|
|
<Container>
|
|
<h1>Nothing here</h1>
|
|
<p>
|
|
404. Back to{" "}
|
|
<a href="/" onClick={navigate("/")}>
|
|
MKRhere?
|
|
</a>
|
|
</p>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export default Home;
|
|
|