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.
18 lines
286 B
18 lines
286 B
import { Link } from "@reach/router";
|
|
import Container from "../components/Container";
|
|
|
|
function Home() {
|
|
return (
|
|
<Container>
|
|
<h1>Nothing here</h1>
|
|
<p>
|
|
404. Back to{" "}
|
|
<b>
|
|
<Link to="/">MKRhere?</Link>
|
|
</b>
|
|
</p>
|
|
</Container>
|
|
);
|
|
}
|
|
|
|
export default Home;
|
|
|